[geeklog-cvs] geeklog: CUSTOM_group_change() was being called with wrong param...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sun Jan 24 05:19:19 EST 2010


changeset 7612:5331a452d7a8
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/5331a452d7a8
user: Dirk Haun <dirk at haun-online.de>
date: Sun Jan 24 10:30:14 2010 +0100
description:
CUSTOM_group_change() was being called with wrong parameters (bug #0001051)

diffstat:

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

diffs (33 lines):

diff -r 24e7dc91ac3a -r 5331a452d7a8 public_html/docs/history
--- a/public_html/docs/history	Sat Jan 23 23:34:29 2010 +0100
+++ b/public_html/docs/history	Sun Jan 24 10:30:14 2010 +0100
@@ -3,6 +3,8 @@
 Apr ??, 2010 (1.6.2)
 ------------
 
+- CUSTOM_group_change() was being called with wrong parameters (bug #0001051)
+  [Blaine]
 - Added clickjacking protection for the printer-friendly version of articles
   [Dirk]
 - When a login is required to view some part of the site, we now display a
diff -r 24e7dc91ac3a -r 5331a452d7a8 system/lib-plugins.php
--- a/system/lib-plugins.php	Sat Jan 23 23:34:29 2010 +0100
+++ b/system/lib-plugins.php	Sun Jan 24 10:30:14 2010 +0100
@@ -8,7 +8,7 @@
 // |                                                                           |
 // | This file implements plugin support in Geeklog.                           |
 // +---------------------------------------------------------------------------+
-// | Copyright (C) 2000-2009 by the following authors:                         |
+// | Copyright (C) 2000-2010 by the following authors:                         |
 // |                                                                           |
 // | Authors: Tony Bibbs       - tony AT tonybibbs DOT com                     |
 // |          Blaine Lang      - blaine AT portalparts DOT com                 |
@@ -1296,7 +1296,7 @@
 
     $function = 'CUSTOM_group_changed';
     if (function_exists($function)) {
-        $function($uid);
+        $function($grp_id, $mode);
     }
 }
 



More information about the geeklog-cvs mailing list