[geeklog-hg] geeklog: Fixed undefined variable

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Jul 20 01:20:04 EDT 2013


changeset 9214:01abccabaae6
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/01abccabaae6
user: dengen <taharaxp at gmail.com>
date: Sat Jul 20 14:19:41 2013 +0900
description:
Fixed undefined variable

diffstat:

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

diffs (21 lines):

diff -r c1092d765278 -r 01abccabaae6 system/lib-plugins.php
--- a/system/lib-plugins.php	Sat Jul 20 14:07:17 2013 +0900
+++ b/system/lib-plugins.php	Sat Jul 20 14:19:41 2013 +0900
@@ -2399,7 +2399,7 @@
 */
 function PLG_submissionSaved($type)
 {
-    global $_PLUGINS;
+    global $_CONF, $_PLUGINS;
     
     $t = explode('.', $type);
     $plg_type = $t[0];    
@@ -2438,7 +2438,7 @@
 */
 function PLG_submissionDeleted($type)
 {
-    global $_PLUGINS;
+    global $_CONF, $_PLUGINS;
 
     $t = explode('.', $type);
     $plg_type = $t[0];



More information about the geeklog-cvs mailing list