Update fax_edit.php

Changed the type of fax_caller_id_number to text, because otherwise the leading 0 is removed.
This commit is contained in:
FusionPBX
2018-02-21 16:08:01 -07:00
committed by GitHub
parent ab7910acb0
commit 20c24049bd

View File

@@ -595,7 +595,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo " ".$text['label-caller-id-number']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='number' name='fax_caller_id_number' maxlength='255' min='0' step='1' value=\"$fax_caller_id_number\">\n";
echo " <input class='formfld' type='text' name='fax_caller_id_number' maxlength='255' min='0' step='1' value=\"$fax_caller_id_number\">\n";
echo "<br />\n";
echo "".$text['description-caller-id-number']."\n";
echo "</td>\n";