浏览代码

Modify description input from text to textarea

FusionPBX 4 年之前
父节点
当前提交
2bbb9656e7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/user_settings/user_setting_edit.php

+ 1 - 1
core/user_settings/user_setting_edit.php

@@ -760,7 +760,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
 	echo "	".$text['label-description']."\n";
 	echo "</td>\n";
 	echo "<td class='vtable' align='left'>\n";
-	echo "	<input class='formfld' type='text' name='user_setting_description' style='width: 80%; max-width: 600px; min-width: 167px;' maxlength='255' value=\"".escape($user_setting_description)."\">\n";
+	echo "	<textarea class='formfld' style='width: 185px; height: 80px;' name='user_setting_description'>".escape($user_setting_description)."</textarea>\n";
 	echo "<br />\n";
 	echo $text['description-description']."\n";
 	echo "</td>\n";