CODE STYLE
- gulliver/methods/errors/error404.php.
This commit is contained in:
@@ -24,13 +24,13 @@
|
||||
*/
|
||||
session_start();
|
||||
|
||||
if ( isset ( $_SESSION['phpFileNotFound'] ) )
|
||||
if ( isset ( $_SESSION['phpFileNotFound'] ) ) {
|
||||
$uri = $_SESSION['phpFileNotFound'];
|
||||
else if ( isset ( $_GET['l'] ) )
|
||||
} elseif ( isset ( $_GET['l'] ) ){
|
||||
$uri = htmlentities($_GET['l'], ENT_QUOTES, "UTF-8");
|
||||
else
|
||||
} else {
|
||||
$uri = 'undefined';
|
||||
|
||||
}
|
||||
$referer = isset ( $_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $_SESSION['phpLastFileFound'];
|
||||
|
||||
$ERROR_TEXT = "404 Not Found ";
|
||||
@@ -58,4 +58,4 @@
|
||||
|
||||
$fileHeader = PATH_GULLIVER_HOME . 'methods/errors/header.php' ;
|
||||
include ( $fileHeader);
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user