[geeklog-hg] geeklog: Fixed php error reporting that was changed by accident ...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Fri Dec 21 16:25:56 EST 2012


changeset 8885:46371fbbb73e
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/46371fbbb73e
user: Tom <websitemaster at cogeco.net>
date: Fri Dec 21 16:25:45 2012 -0500
description:
Fixed php error reporting that was changed by accident with previous commit

diffstat:

 public_html/lib-common.php |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r f65d153d776f -r 46371fbbb73e public_html/lib-common.php
--- a/public_html/lib-common.php	Fri Dec 21 16:22:33 2012 -0500
+++ b/public_html/lib-common.php	Fri Dec 21 16:25:45 2012 -0500
@@ -34,8 +34,8 @@
 // +---------------------------------------------------------------------------+
 
 // Prevent PHP from reporting uninitialized variables
-//error_reporting(E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR | E_USER_ERROR);
-error_reporting(E_ALL);
+error_reporting(E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR | E_USER_ERROR);
+
 /**
 * This is the common library for Geeklog.  Through our code, you will see
 * functions with the COM_ prefix (e.g. COM_siteHeader()).  Any such functions



More information about the geeklog-cvs mailing list