HTML5 input tags for call_block_edit

This commit is contained in:
luis daniel lucio quiroz
2014-12-21 06:34:17 +00:00
parent 4438c2cc70
commit ffb0c71a8e
+4 -3
View File
@@ -22,6 +22,7 @@
Contributor(s): Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
Luis Daniel Lucio Quiroz <dlucio@okay.com.mx>
Call Block is written by Gerrit Visser <gerrit308@gmail.com> Call Block is written by Gerrit Visser <gerrit308@gmail.com>
*/ */
@@ -270,7 +271,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo " ".$text['label-number'].":\n"; echo " ".$text['label-number'].":\n";
echo "</td>\n"; echo "</td>\n";
echo "<td class='vtable' align='left'>\n"; echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='call_block_number' maxlength='255' value=\"$call_block_number\">\n"; echo " <input class='formfld' type='text' name='call_block_number' maxlength='255' value=\"$call_block_number\" required='required'>\n";
echo "<br />\n"; echo "<br />\n";
echo $text['description-number']."\n"; echo $text['description-number']."\n";
echo "<br />\n"; echo "<br />\n";
@@ -282,7 +283,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo " ".$text['label-name'].":\n"; echo " ".$text['label-name'].":\n";
echo "</td>\n"; echo "</td>\n";
echo "<td class='vtable' align='left'>\n"; echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='call_block_name' maxlength='255' value=\"$call_block_name\">\n"; echo " <input class='formfld' type='text' name='call_block_name' maxlength='255' value=\"$call_block_name\" required='required'>\n";
echo "<br />\n"; echo "<br />\n";
echo $text['description-name']."\n"; echo $text['description-name']."\n";
echo "</td>\n"; echo "</td>\n";
@@ -447,4 +448,4 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
//include the footer //include the footer
require_once "resources/footer.php"; require_once "resources/footer.php";
?> ?>