CODE STYLE

- gulliver/methods/errors/error404.php.
This commit is contained in:
Marco Antonio Nina
2012-08-01 17:57:22 -04:00
parent f12dd0d493
commit 5bb42dfbe8

View File

@@ -22,40 +22,40 @@
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/
session_start();
session_start();
if ( isset ( $_SESSION['phpFileNotFound'] ) )
$uri = $_SESSION['phpFileNotFound'];
else if ( isset ( $_GET['l'] ) )
$uri = htmlentities($_GET['l'], ENT_QUOTES, "UTF-8");
else
$uri = 'undefined';
if ( isset ( $_SESSION['phpFileNotFound'] ) ) {
$uri = $_SESSION['phpFileNotFound'];
} elseif ( isset ( $_GET['l'] ) ){
$uri = htmlentities($_GET['l'], ENT_QUOTES, "UTF-8");
} else {
$uri = 'undefined';
}
$referer = isset ( $_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $_SESSION['phpLastFileFound'];
$referer = isset ( $_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $_SESSION['phpLastFileFound'];
$ERROR_TEXT = "404 Not Found ";
$ERROR_DESCRIPTION = "
Your browser (or proxy) sent a request
that this server could not understand.<br />
<br />
<strong>Possible reasons: </strong><br />
Your link is broken. This may occur when you receive
a link via email, but your client software adds line breaks, thus distorting
long URLs. <br />
<br />
The page you requested is no longer active. <br />
<br />
There is a typographic
error in the link, in case you entered the URL into the browser's address
toolbar.<br />
<br />
<br />
<table>
<tr><td><small>url</small></td> <td><small>$uri</small></td></tr>
<tr><td><small>referer</small></td><td><small>$referer</small></td></tr>
</table>
";
$ERROR_TEXT = "404 Not Found ";
$ERROR_DESCRIPTION = "
Your browser (or proxy) sent a request
that this server could not understand.<br />
<br />
<strong>Possible reasons: </strong><br />
Your link is broken. This may occur when you receive
a link via email, but your client software adds line breaks, thus distorting
long URLs. <br />
<br />
The page you requested is no longer active. <br />
<br />
There is a typographic
error in the link, in case you entered the URL into the browser's address
toolbar.<br />
<br />
<br />
<table>
<tr><td><small>url</small></td> <td><small>$uri</small></td></tr>
<tr><td><small>referer</small></td><td><small>$referer</small></td></tr>
</table>
";
$fileHeader = PATH_GULLIVER_HOME . 'methods/errors/header.php' ;
include ( $fileHeader);
$fileHeader = PATH_GULLIVER_HOME . 'methods/errors/header.php' ;
include ( $fileHeader);
?>