Changeset 8353
- Timestamp:
- 09/09/09 16:02:29 (2 years ago)
- Files:
-
- modules/branches/2.6/core/install.php (modified) (2 diffs)
- modules/branches/2.6/core/module.xml (modified) (2 diffs)
- modules/branches/2.6/framework/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.6/core/install.php
r7630 r8353 325 325 } 326 326 327 function __order_DialRules($a, $b) { 328 return substr($a,4) > substr($b,4); 329 } 330 327 331 function __migrate_trunks_to_table() { 328 332 … … 547 551 foreach ($conf as $tname => $rules) { 548 552 $tid = ltrim($tname,'trunk-'); 549 ksort($rules); //make sure they are in order553 uksort($rules,'__order_DialRules'); //make sure they are in order 550 554 $seq = 1; 551 555 foreach ($rules as $rule) { modules/branches/2.6/core/module.xml
r8346 r8353 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.6.0RC 1.1</version>6 <version>2.6.0RC2.0</version> 7 7 <publisher>FreePBX</publisher> 8 8 <license>GPLv2+</license> … … 10 10 <canuninstall>no</canuninstall> 11 11 <changelog> 12 *2.6.0RC2.0* #3854 12 13 *2.6.0RC1.1* #3751 13 14 *2.6.0RC1.0* #3529, #3864, #3538 modules/branches/2.6/framework/module.xml
r8350 r8353 2 2 <rawname>framework</rawname> 3 3 <name>FreePBX Framework</name> 4 <version>2.6.0.RC 1.1</version>4 <version>2.6.0.RC2.0</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> … … 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.6.0RC2.0* #3854 10 11 *2.6.0RC1.1* #3807, #3843, #3856, #3857 11 12 *2.6.0RC1.0* #3850, #3837, #3858, #3861, #3678
