Ticket #2903: indications.diff
| File indications.diff, 1.6 kB (added by lazytt, 5 months ago) |
|---|
-
admin/modules/core/functions.inc.php
old new 3792 3792 array ( "name" => "Venezuela / South America", "iso" => "ve", "conf" => "; Tone definition source for ve found on\n; Reference: http://www.itu.int/ITU-T/inr/forms/files/tones-0203.pdf\nringcadence = 1000,4000\ndial = 425\nbusy = 425/500,0/500\nring = 425/1000,0/4000\ncongestion = 425/250,0/250\ncallwaiting = 400+450/300,0/6000\ndialrecall = 425\nrecord = 1400/500,0/15000\ninfo = !950/330,!1440/330,!1800/330,0/1000\n"),); 3793 3793 } 3794 3794 3795 function general_display_zones($curzone ) {3795 function general_display_zones($curzone, $tabindex) { 3796 3796 $zonelist = general_get_zonelist(); 3797 echo "<select name='TONEZONE' >\n";3797 echo "<select name='TONEZONE' tabindex='$tabindex++'>\n"; 3798 3798 foreach ($zonelist as $zone) { 3799 3799 if ($zone['iso'] == $curzone) 3800 3800 echo "<option selected value='{$zone['iso']}'>{$zone['name']}</option>\n"; -
admin/modules/core/page.general.php
old new 347 347 <p> 348 348 <?php echo _("Country")?> <a class="info" href="#"><?php echo _("Indications")?><span><?php echo _("Select which country you are in")?></span></a> 349 349 <?php if (isset($TONEZONE) && strlen($TONEZONE)) 350 general_display_zones($TONEZONE );350 general_display_zones($TONEZONE, $tabindex); 351 351 else 352 352 general_display_zones('us'); 353 353 ?>
