[geeklog-cvs] geeklog: Fixed a bug in the Group Editor that didn't let you add...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Wed Nov 4 07:00:50 EST 2009


changeset 7437:37aac60623c4
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/37aac60623c4
user: Dirk Haun <dirk at haun-online.de>
date: Wed Nov 04 13:00:40 2009 +0100
description:
Fixed a bug in the Group Editor that didn't let you add groups to other groups unless your $_TABLES['groups'] happened to be called "groups" (bug #0000998)

diffstat:

 public_html/admin/group.php |   4 ++--
 public_html/docs/history    |  13 +++++++++++++
 2 files changed, 15 insertions(+), 2 deletions(-)

diffs (36 lines):

diff -r dcad55dde562 -r 37aac60623c4 public_html/admin/group.php
--- a/public_html/admin/group.php	Tue Nov 03 21:53:52 2009 +0100
+++ b/public_html/admin/group.php	Wed Nov 04 13:00:40 2009 +0100
@@ -1083,8 +1083,8 @@
         $features = $_POST['features'];
     }
     $groups = array();
-    if (isset($_POST[$_TABLES['groups']])) {
-        $groups = $_POST[$_TABLES['groups']];
+    if (isset($_POST['groups'])) {
+        $groups = $_POST['groups'];
     }
     $display .= savegroup(COM_applyFilter($_POST['grp_id'], true),
                           COM_applyFilter($_POST['grp_name']),
diff -r dcad55dde562 -r 37aac60623c4 public_html/docs/history
--- a/public_html/docs/history	Tue Nov 03 21:53:52 2009 +0100
+++ b/public_html/docs/history	Wed Nov 04 13:00:40 2009 +0100
@@ -1,5 +1,18 @@
 Geeklog History/Changes:
 
+Nov ??, 2009 (1.6.1rc1)
+------------
+
+Changes since 1.6.1b1:
+- Fixed a bug in the Group Editor that didn't let you add groups to other groups
+  unless your $_TABLES['groups'] happened to be called "groups" (bug #0000998)
+  [Dirk]
+
+Static Pages Plugin
+-------------------
+- Fixed use of wrong CSS class for the entries for the What's New block [Tom]
+
+
 Nov 1, 2009 (1.6.1b1)
 -----------
 



More information about the geeklog-cvs mailing list