|
From: <be...@us...> - 2013-08-06 17:50:36
|
Revision: 11884
http://sourceforge.net/p/xoops/svn/11884
Author: beckmi
Date: 2013-08-06 17:50:34 +0000 (Tue, 06 Aug 2013)
Log Message:
-----------
ID: 1143 (old 430840) class/module.errorhandler.php (uberrookie/zyspec)
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.errorhandler.php
Modified: XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-08-06 13:15:31 UTC (rev 11883)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-08-06 17:50:34 UTC (rev 11884)
@@ -13,6 +13,7 @@
- fixed wrong return icon in Smarty xoModuleIcons32
- fixed issue with jGrows in xoops.css (xoobaru/tarik)
- fix for deprecated "preg_replace/e" function in PHP 5.5 (mamba)
+- ID: 1143 (old ID 430840) class/module.errorhandler.php (uberrookie/zyspec)
===============================
2013/04/21: Version 2.5.6 Final
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.errorhandler.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.errorhandler.php 2013-08-06 13:15:31 UTC (rev 11883)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/class/module.errorhandler.php 2013-08-06 17:50:34 UTC (rev 11884)
@@ -100,9 +100,11 @@
}
include_once XOOPS_ROOT_PATH . '/header.php';
echo '<div><strong>' . $xoopsConfig['sitename'] . ' Error</strong><br /><br />';
- echo 'Error Code: $e_code<br /><br /><br />';
- echo '<strong>ERROR:</strong> $errmsg[$e_code]<br /><br /><br />';
+
+ echo "Error Code: $e_code<br /><br /><br />";
+ echo "<strong>ERROR:</strong> $errmsg[$e_code]<br /><br /><br />";
echo '[ <a href=\'javascript:history.go(-' . $pages . ')\'>Go Back</a> ]</div>';
+
include_once XOOPS_ROOT_PATH . '/footer.php';
exit();
}
|