HomeHelpTrac

Changeset 15958


Ignore:
Timestamp:
02/07/12 03:54:23 (4 months ago)
Author:
Anton Lesnikov
Message:

"Sorting and Filter Selects" checklist

Location:
trunk/studio/classes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/studio/classes/BxDolStudioBuilderPage.php

    r15949 r15958  
    7878 
    7979    protected function addInArray($aInput, $sKey, $aValues) { 
    80         return stdAddInArray($aInput, $sKey, $aValues); 
     80        bx_import('BxDolStudioUtils'); 
     81        return BxDolStudioUtils::addInArray($aInput, $sKey, $aValues); 
    8182    } 
    8283} 
  • trunk/studio/classes/BxDolStudioFormsField.php

    r15949 r15958  
    5858 
    5959    protected function addInArray($aInput, $sKey, $aValues) { 
    60         return stdAddInArray($aInput, $sKey, $aValues); 
     60        bx_import('BxDolStudioUtils'); 
     61        return BxDolStudioUtils::addInArray($aInput, $sKey, $aValues); 
    6162    } 
    6263} 
  • trunk/studio/classes/BxDolStudioUtils.php

    r15953 r15958  
    7373    } 
    7474 
    75     function stdAddInArray($aInput, $sKey, $aValues) { 
     75    public static function addInArray($aInput, $sKey, $aValues) { 
    7676        reset($aInput); 
    7777        $iInput = count($aInput); 
Note: See TracChangeset for help on using the changeset viewer.