- Timestamp:
- 06/22/06 10:42:13 (2 years ago)
- Files:
-
- 1 modified
-
Zend/Perms.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Zend/Perms.php
r19 r20 111 111 * Assign the array you wish to use for verification 112 112 */ 113 public static function load($perm_array) { 114 self::$_perm_array = $perm_array; 113 public static function load($array, $group = 0) { 114 if($group) { 115 self::$_perm_array = $array; 116 } else { 117 self::$_group_array = $array; 118 } 115 119 } 116 120
