Changeset 7415
- Timestamp:
- 01/15/09 11:00:45 (4 years ago)
- Files:
-
- modules/branches/2.5/core/functions.inc.php (modified) (2 diffs)
- modules/branches/2.5/core/module.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/core/functions.inc.php
r7342 r7415 343 343 } 344 344 345 // Move all 'disallow=all' to the top to avoid errors345 // Move all 'disallow=all' and deny to the top to avoid errors 346 346 // 347 347 $results2 = array(); … … 349 349 $options = explode("&", $element['data']); 350 350 foreach ($options as $option) { 351 if ( $element['keyword'] == 'disallow' && $option == 'all') {351 if (($element['keyword'] == 'disallow' && $option == 'all') | ($element['keyword'] == 'deny')) { 352 352 array_unshift($results2,array('keyword'=>$element['keyword'],'data'=>$option)); 353 353 } else { modules/branches/2.5/core/module.xml
r7365 r7415 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.5.1. 4</version>6 <version>2.5.1.5</version> 7 7 <candisable>no</candisable> 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.5.1.5* #3474 10 11 *2.5.1.4* #3380, #3451, #932, #3358, #3426 11 12 *2.5.1.3* #3380, #3358, #3387, localizations
