[geeklog-cvs] geeklog: E_ALL fix

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Oct 31 12:05:34 EDT 2009


changeset 7415:6043bfcaf4c9
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/6043bfcaf4c9
user: Dirk Haun <dirk at haun-online.de>
date: Sat Oct 31 17:00:51 2009 +0100
description:
E_ALL fix

diffstat:

 public_html/admin/syndication.php |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 3f9da8f02061 -r 6043bfcaf4c9 public_html/admin/syndication.php
--- a/public_html/admin/syndication.php	Sat Oct 31 16:51:43 2009 +0100
+++ b/public_html/admin/syndication.php	Sat Oct 31 17:00:51 2009 +0100
@@ -495,7 +495,7 @@
         $A[$name] = COM_stripslashes ($value);
     }
 
-    if ($A['is_enabled'] == 'on') {
+    if (isset($A['is_enabled']) && ($A['is_enabled'] == 'on')) {
         $A['is_enabled'] = 1;
     } else {
         $A['is_enabled'] = 0;



More information about the geeklog-cvs mailing list