Remove the email type from the input form for fax edit as it doesn't allow multiple email addresses.

This commit is contained in:
Mark Crane
2015-01-30 23:20:01 +00:00
parent 6d901034ad
commit 9926d69bcb

View File

@@ -719,7 +719,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo " ".$text['label-email']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='email' name='fax_email' maxlength='255' value=\"$fax_email\">\n";
echo " <input class='formfld' type='text' name='fax_email' maxlength='255' value=\"$fax_email\">\n";
if (function_exists("imap_open") && file_exists("fax_box_remote.php")) {
echo "<input type='button' class='btn' value='".$text['button-advanced']."' onclick=\"toggle_advanced('advanced_email_connection');\">\n";
}