[geeklog-hg] geeklog: Fixed undeclared variables

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Thu Jul 11 19:34:34 EDT 2013


changeset 9173:ac353168ba40
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/ac353168ba40
user: Tom <websitemaster at cogeco.net>
date: Tue Jul 09 15:11:37 2013 -0400
description:
Fixed undeclared variables

diffstat:

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

diffs (21 lines):

diff -r 163c86befc63 -r ac353168ba40 system/lib-plugins.php
--- a/system/lib-plugins.php	Tue Jul 09 15:10:48 2013 -0400
+++ b/system/lib-plugins.php	Tue Jul 09 15:11:37 2013 -0400
@@ -2481,7 +2481,7 @@
 */
 function PLG_itemSaved($id, $type, $old_id = '')
 {
-    global $_PLUGINS;
+    global $_CONF, $_PLUGINS;
     
     $t = explode('.', $type);
     $plg_type = $t[0];    
@@ -2523,7 +2523,7 @@
 */
 function PLG_itemDeleted($id, $type)
 {
-    global $_PLUGINS;
+    global $_CONF, $_PLUGINS;
 
     $t = explode('.', $type);
     $plg_type = $t[0];



More information about the geeklog-cvs mailing list