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)
1.1 --- a/public_html/admin/group.php Tue Nov 03 21:53:52 2009 +0100
1.2 +++ b/public_html/admin/group.php Wed Nov 04 13:00:40 2009 +0100
1.3 @@ -1083,8 +1083,8 @@
1.4 $features = $_POST['features'];
1.5 }
1.6 $groups = array();
1.7 - if (isset($_POST[$_TABLES['groups']])) {
1.8 - $groups = $_POST[$_TABLES['groups']];
1.9 + if (isset($_POST['groups'])) {
1.10 + $groups = $_POST['groups'];
1.11 }
1.12 $display .= savegroup(COM_applyFilter($_POST['grp_id'], true),
1.13 COM_applyFilter($_POST['grp_name']),
2.1 --- a/public_html/docs/history Tue Nov 03 21:53:52 2009 +0100
2.2 +++ b/public_html/docs/history Wed Nov 04 13:00:40 2009 +0100
2.3 @@ -1,5 +1,18 @@
2.4 Geeklog History/Changes:
2.5
2.6 +Nov ??, 2009 (1.6.1rc1)
2.7 +------------
2.8 +
2.9 +Changes since 1.6.1b1:
2.10 +- Fixed a bug in the Group Editor that didn't let you add groups to other groups
2.11 + unless your $_TABLES['groups'] happened to be called "groups" (bug #0000998)
2.12 + [Dirk]
2.13 +
2.14 +Static Pages Plugin
2.15 +-------------------
2.16 +- Fixed use of wrong CSS class for the entries for the What's New block [Tom]
2.17 +
2.18 +
2.19 Nov 1, 2009 (1.6.1b1)
2.20 -----------
2.21