- Timestamp:
- 10/11/11 19:02:48 (8 months ago)
- File:
-
- 1 edited
-
tags/7.0/administration/memb_levels.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/7.0/administration/memb_levels.php
r15573 r15598 283 283 $aItemsSystem = $aItemsCustom = array(); 284 284 285 $aLevels = $GLOBALS['MySQL']->getAll("SELECT `ID` AS `id`, `Name` AS `title`, `Active` AS `active`, `Purchasable` AS `purchasable`, `Removable` AS `removable` FROM `sys_acl_levels` WHERE ` Purchasable`='no' AND `Removable`='no' ORDER BY `ID` ASC");285 $aLevels = $GLOBALS['MySQL']->getAll("SELECT `ID` AS `id`, `Name` AS `title`, `Active` AS `active`, `Purchasable` AS `purchasable`, `Removable` AS `removable` FROM `sys_acl_levels` WHERE `Removable`='no' ORDER BY `ID` ASC"); 286 286 foreach($aLevels as $aLevel) 287 287 $aItemsSystem[] = array( … … 291 291 ); 292 292 293 $aLevels = $GLOBALS['MySQL']->getAll("SELECT `ID` AS `id`, `Name` AS `title`, `Active` AS `active`, `Purchasable` AS `purchasable`, `Removable` AS `removable` FROM `sys_acl_levels` WHERE ` Purchasable`='yes' AND `Removable`='yes' ORDER BY `Order` ASC");293 $aLevels = $GLOBALS['MySQL']->getAll("SELECT `ID` AS `id`, `Name` AS `title`, `Active` AS `active`, `Purchasable` AS `purchasable`, `Removable` AS `removable` FROM `sys_acl_levels` WHERE `Removable`='yes' ORDER BY `Order` ASC"); 294 294 foreach($aLevels as $aLevel) 295 295 $aItemsCustom[] = array(
Note: See TracChangeset
for help on using the changeset viewer.