Update conference_profile_param_edit.php (#3288)

This commit is contained in:
AlexanderDCrane 2018-08-27 14:50:12 -06:00 committed by FusionPBX
parent 3fef4fd37d
commit 0d409269d3
1 changed files with 3 additions and 3 deletions

View File

@ -156,7 +156,7 @@
echo " ".$text['label-profile_param_name']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='profile_param_name' maxlength='255' value=\"$profile_param_name\">\n";
echo " <input class='formfld' type='text' name='profile_param_name' maxlength='255' value=\"".escape($profile_param_name).""\">\n";
echo "<br />\n";
echo $text['description-profile_param_name']."\n";
echo "</td>\n";
@ -167,7 +167,7 @@
echo " ".$text['label-profile_param_value']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='profile_param_value' maxlength='255' value=\"$profile_param_value\">\n";
echo " <input class='formfld' type='text' name='profile_param_value' maxlength='255' value=\"".escape($profile_param_value).""\">\n";
echo "<br />\n";
echo $text['description-profile_param_value']."\n";
echo "</td>\n";
@ -203,7 +203,7 @@
echo " ".$text['label-profile_param_description']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='profile_param_description' maxlength='255' value=\"$profile_param_description\">\n";
echo " <input class='formfld' type='text' name='profile_param_description' maxlength='255' value=\"".escape($profile_param_description).""\">\n";
echo "<br />\n";
echo $text['description-profile_param_description']."\n";
echo "</td>\n";