Changeset 5576
- Timestamp:
- 01/12/08 14:12:26 (5 years ago)
- Files:
-
- modules/branches/2.3 (modified) (1 prop)
- modules/branches/2.3/core/module.xml (modified) (1 diff)
- modules/branches/2.3/core/page.routing.php (modified) (2 diffs)
- modules/branches/2.3/core/page.trunks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3
- Property svnmerge-integrated changed from /modules/branches/2.2:1-3588,3615-3635,3637-3638,3640,3674,3680,3686,3692,3702,3706,3710,3716,3758,3760,3762-3765,3767-3785,3787-3789,3801,3810,3828,3831,3839,3860,3866,3875,3877,3887,3899,3911,3913,3943,3982-3983,3990,3998,4007,4022-4023,4089,4092,4098,4265,4285 /modules/branches/2.4:1-5079,5090,5093,5097-5118,5120-5170,5172,5174,5176-5182,5184-5199,5202-5203,5205-5211,5239,5271-5272,5312,5383,5516,5544 to /modules/branches/2.2:1-3588,3615-3635,3637-3638,3640,3674,3680,3686,3692,3702,3706,3710,3716,3758,3760,3762-3765,3767-3785,3787-3789,3801,3810,3828,3831,3839,3860,3866,3875,3877,3887,3899,3911,3913,3943,3982-3983,3990,3998,4007,4022-4023,4089,4092,4098,4265,4285 /modules/branches/2.4:1-5079,5090,5093,5097-5118,5120-5170,5172,5174,5176-5182,5184-5199,5202-5203,5205-5211,5239,5271-5272,5312,5383,5516,5544,5572
modules/branches/2.3/core/module.xml
r5528 r5576 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.3.1. 3</version>6 <version>2.3.1.4</version> 7 7 <candisable>no</candisable> 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.3.1.4* #2607 fix display problems with custom trunks starting with A, M or P 10 11 *2.3.1.3* added info to update checking tooltip providing info of what is transmitted 11 12 *2.3.1.2* #2526 dialout-trunk-predial-hook not always called, block queue login using queue number and fix to use AMPUSER modules/branches/2.3/core/page.routing.php
r4987 r5576 512 512 foreach ($trunks as $name=>$display_description) { 513 513 if ($trunkstate[$name] == 'off') { 514 echo "<option id=\"trunk".$key."\" name=\"trunk".$key."\" value=\"".$name."\" style=\"background: #FFF;\" ".($name == $trunk ? "selected" : "").">". $display_description."</option>";514 echo "<option id=\"trunk".$key."\" name=\"trunk".$key."\" value=\"".$name."\" style=\"background: #FFF;\" ".($name == $trunk ? "selected" : "").">".str_replace('AMP:', '', $display_description)."</option>"; 515 515 } else { 516 echo "<option id=\"trunk".$key."\" name=\"trunk".$key."\" value=\"".$name."\" style=\"background: #DDD;\" ".($name == $trunk ? "selected" : "").">". $display_description."</option>";516 echo "<option id=\"trunk".$key."\" name=\"trunk".$key."\" value=\"".$name."\" style=\"background: #DDD;\" ".($name == $trunk ? "selected" : "").">".str_replace('AMP:', '', $display_description)."</option>"; 517 517 } 518 518 } … … 556 556 foreach ($trunks as $name=>$display_description) { 557 557 if ($trunkstate[$name] == 'off') { 558 echo "<option value=\"".$name."\">". ltrim($display_description,"AMP:")."</option>";558 echo "<option value=\"".$name."\">".str_replace('AMP:', '', $display_description)."</option>"; 559 559 } else { 560 560 echo "<option value=\"".$name."\" style=\"background: #DDD;\" >*".ltrim($display_description,"AMP:")."*</option>"; modules/branches/2.3/core/page.trunks.php
r5091 r5576 199 199 foreach ($tresults as $tresult) { 200 200 $background = ($tresult[2] == 'on')?'#DDD':'#FFF'; 201 echo "\t<li><a ".($extdisplay==$tresult[0] ? 'class="current"':'')." href=\"config.php?display=".urlencode($display)."&extdisplay=".urlencode($tresult[0])."\" title=\"".urlencode($tresult[1])."\" style=\"background: $background;\" >"._("Trunk")." ".substr( ltrim($tresult[1],"AMP:"),0,15)."</a></li>\n";201 echo "\t<li><a ".($extdisplay==$tresult[0] ? 'class="current"':'')." href=\"config.php?display=".urlencode($display)."&extdisplay=".urlencode($tresult[0])."\" title=\"".urlencode($tresult[1])."\" style=\"background: $background;\" >"._("Trunk")." ".substr(str_replace('AMP:', '', $tresult[1]),0,15)."</a></li>\n"; 202 202 } 203 203
