Changeset 15958
- Timestamp:
- 02/07/12 03:54:23 (4 months ago)
- Location:
- trunk/studio/classes
- Files:
-
- 3 edited
-
BxDolStudioBuilderPage.php (modified) (1 diff)
-
BxDolStudioFormsField.php (modified) (1 diff)
-
BxDolStudioUtils.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/studio/classes/BxDolStudioBuilderPage.php
r15949 r15958 78 78 79 79 protected function addInArray($aInput, $sKey, $aValues) { 80 return stdAddInArray($aInput, $sKey, $aValues); 80 bx_import('BxDolStudioUtils'); 81 return BxDolStudioUtils::addInArray($aInput, $sKey, $aValues); 81 82 } 82 83 } -
trunk/studio/classes/BxDolStudioFormsField.php
r15949 r15958 58 58 59 59 protected function addInArray($aInput, $sKey, $aValues) { 60 return stdAddInArray($aInput, $sKey, $aValues); 60 bx_import('BxDolStudioUtils'); 61 return BxDolStudioUtils::addInArray($aInput, $sKey, $aValues); 61 62 } 62 63 } -
trunk/studio/classes/BxDolStudioUtils.php
r15953 r15958 73 73 } 74 74 75 function stdAddInArray($aInput, $sKey, $aValues) {75 public static function addInArray($aInput, $sKey, $aValues) { 76 76 reset($aInput); 77 77 $iInput = count($aInput);
Note: See TracChangeset
for help on using the changeset viewer.