File: error.php

package info (click to toggle)
flyspray 0.9.8-10
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 2,444 kB
  • ctags: 3,031
  • sloc: php: 17,634; sh: 301; makefile: 12
file content (14 lines) | stat: -rw-r--r-- 319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/*
   This is the generic 'error' script.  You are usually redirected here if
   you requested a page or task that doesn't exist, or if you entered an
   illegal URL and it was caught by a regexp.
*/

$fs->get_language_pack($lang, 'main');

echo '<div id="error">';
echo $language['errorpage'];
echo '</div>';

?>