From f21bfab1ebfa83a0da65bcce9fc04c6126300a16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BB=94=E5=93=A5?= Date: Wed, 13 Dec 2017 21:38:15 +0800 Subject: [PATCH] * Task #3465 --- module/my/view/managecontacts.html.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module/my/view/managecontacts.html.php b/module/my/view/managecontacts.html.php index bd8af46356..22954526c0 100644 --- a/module/my/view/managecontacts.html.php +++ b/module/my/view/managecontacts.html.php @@ -45,13 +45,14 @@
id, $disabled) ? ' readonly' : ''; if($mode == 'new') { echo html::input('newList', '', "class='form-control'"); } else { - echo html::input('listName', $list->listName, "class='form-control'"); + echo html::input('listName', $list->listName, "$readonly class='form-control'"); echo html::hidden('listID', $list->id); } ?> @@ -68,7 +69,7 @@ } else { - echo html::select('users[]', $users, $list->userList, "multiple class='form-control chosen'"); + echo html::select('users[]', $users, $list->userList, "multiple $readonly class='form-control chosen'"); } ?>