HomeHelpTrac

Changeset 15598 for tags


Ignore:
Timestamp:
10/11/11 19:02:48 (8 months ago)
Author:
Alexander Trofimov
Message:

Ticket #2673

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/7.0/administration/memb_levels.php

    r15573 r15598  
    283283    $aItemsSystem = $aItemsCustom = array(); 
    284284 
    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"); 
    286286    foreach($aLevels as $aLevel) 
    287287        $aItemsSystem[] = array( 
     
    291291        ); 
    292292 
    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"); 
    294294    foreach($aLevels as $aLevel) 
    295295        $aItemsCustom[] = array( 
Note: See TracChangeset for help on using the changeset viewer.