summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2009-10-29 03:50:07 +0000
committerwjames5 <will@tekimaki.com>2009-10-29 03:50:07 +0000
commit14a3aa73507a9a7ecb40945a1f6a3a0ba701c2d3 (patch)
tree082af2ef6fef49188770cad3ac040c72a7bffe54
parented545c450709e1000a05fabfbfdf429acd213cf6 (diff)
downloadliberty-14a3aa73507a9a7ecb40945a1f6a3a0ba701c2d3.tar.gz
liberty-14a3aa73507a9a7ecb40945a1f6a3a0ba701c2d3.tar.bz2
liberty-14a3aa73507a9a7ecb40945a1f6a3a0ba701c2d3.zip
roll back, whatever the limit on groups to be loaded was supposed to address completely disables an administrators ability to adjust custom content permissions, which is the primary purpose of this.
-rw-r--r--content_permissions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/content_permissions.php b/content_permissions.php
index 590f154..a8a0999 100644
--- a/content_permissions.php
+++ b/content_permissions.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Revision: 1.12 $
+ * @version $Revision: 1.13 $
* @package liberty
* @subpackage functions
*/
@@ -47,8 +47,8 @@ if( !empty( $_REQUEST['action'] ) && @BitBase::verifyId( $gContent->mContentId )
}
}
-// Get a list of groups owned by the user (and thus able to be administered by this user) OR public groups
-$listHash = array( 'sort_mode' => 'group_id_asc', 'visible' => 1);
+// Get a list of groups
+$listHash = array( 'sort_mode' => 'group_id_asc' );
$contentPerms['groups'] = $gBitUser->getAllGroups( $listHash );
if( !empty( $gContent->mType['handler_package'] )) {