diff options
author | Chris Buechler <cmb@pfsense.org> | 2010-08-13 12:58:00 -0400 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2010-08-13 12:58:47 -0400 |
commit | f1ca6b86de1736ec2393ca3ac16040312eab8635 (patch) | |
tree | 18133869cf1fc3fc4c98aa72c7141613ab245192 | |
parent | df309b3775db6f84ad2cc830b35c1c46c51ce318 (diff) | |
download | pfsense-f1ca6b86de1736ec2393ca3ac16040312eab8635.zip pfsense-f1ca6b86de1736ec2393ca3ac16040312eab8635.tar.gz |
should be #777 not *777
-rwxr-xr-x | usr/local/www/interfaces.php | 2 | ||||
-rw-r--r-- | usr/local/www/interfaces_ppps_edit.php | 2 | ||||
-rw-r--r-- | usr/local/www/javascript/interfaces_ppps_edit/ppps_edit.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 46ab370..d76d5b4 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -996,7 +996,7 @@ $types = array("none" => gettext("None"), "static" => gettext("Static"), "dhcp" $('username').setValue(''); $('password').setValue(''); if(provider.getElementsByTagName('apn')[0].firstChild.data == "CDMA") { - $('phone').setValue('*777'); + $('phone').setValue('#777'); $('apn').setValue(''); } else { $('phone').setValue('*99#'); diff --git a/usr/local/www/interfaces_ppps_edit.php b/usr/local/www/interfaces_ppps_edit.php index 9800c93..7b5a7be 100644 --- a/usr/local/www/interfaces_ppps_edit.php +++ b/usr/local/www/interfaces_ppps_edit.php @@ -519,7 +519,7 @@ $types = array("select" => gettext("Select"), "ppp" => "PPP", "pppoe" => "PPPoE" <td width="22%" valign="top" class="vncell"><?= gettext("Phone Number"); ?></td> <td width="78%" class="vtable"> <input name="phone" type="text" class="formfld unknown" id="phone" size="40" value="<?=htmlspecialchars($pconfig['phone']);?>"> - <br/><span class="vexpl"><?= gettext("Note: Typically (*99# for GSM networks and *777 for CDMA networks"); ?></span> + <br/><span class="vexpl"><?= gettext("Note: Typically (*99# for GSM networks and #777 for CDMA networks"); ?></span> </td> </tr> <tr style="display:none" name="apn_" id="apn_"> diff --git a/usr/local/www/javascript/interfaces_ppps_edit/ppps_edit.js b/usr/local/www/javascript/interfaces_ppps_edit/ppps_edit.js index 1878161..3072a05 100644 --- a/usr/local/www/javascript/interfaces_ppps_edit/ppps_edit.js +++ b/usr/local/www/javascript/interfaces_ppps_edit/ppps_edit.js @@ -230,7 +230,7 @@ function prefill_provider() { $('username').setValue(''); $('password').setValue(''); if(provider.getElementsByTagName('apn')[0].firstChild.data == "CDMA") { - $('phone').setValue('*777'); + $('phone').setValue('#777'); $('apn').setValue(''); } else { $('phone').setValue('*99#'); |