Changeset 9480
- Timestamp:
- 04/11/10 12:24:01 (3 years ago)
- Files:
-
- modules/branches/2.8/core/module.xml (modified) (2 diffs)
- modules/branches/2.8/core/page.routing.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.8/core/module.xml
r9463 r9480 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.8.0.0beta1. 7</version>6 <version>2.8.0.0beta1.8</version> 7 7 <publisher>FreePBX</publisher> 8 8 <license>GPLv2+</license> … … 10 10 <canuninstall>no</canuninstall> 11 11 <changelog> 12 *2.8.0.0beta1.8* #4201 12 13 *2.8.0.0beta1.7* #4174, #4190 13 14 *2.8.0.0beta1.6* #4181, #4184 modules/branches/2.8/core/page.routing.php
r9406 r9480 623 623 <?php // move up 624 624 if ($key > 0) {?> 625 <img src="images/resultset_up.png" onclick="repositionTrunk('<?php echo $key ?>','up')" alt="<?php echo _("Move Up")?>" style=" float:none; margin-left:0px; margin-bottom:0px;" width="12px" height="12px">625 <img src="images/resultset_up.png" onclick="repositionTrunk('<?php echo $key ?>','up')" alt="<?php echo _("Move Up")?>" style="cursor:pointer; float:none; margin-left:0px; margin-bottom:0px;" width="12px" height="12px"> 626 626 <?php } else { ?> 627 627 <img src="images/blank.gif" style="float:none; margin-left:0px; margin-bottom:0px;" width="9" height="11"> … … 851 851 } 852 852 853 //TODO: maybe add action vs. it being blank and assumed above? 854 function repositionTrunk(key,direction) { 855 switch (direction) { 856 case 'up': 857 case 'down': 858 document.getElementById('repotrunkdirection').value=direction; 859 document.getElementById('repotrunkkey').value=key; 860 clearPatterns(); 861 document.getElementById('routeEdit').submit(); 862 break; 863 } 864 } 853 865 854 866 function deleteTrunk(key) {
