Commit 19dc35a3cccaeb1246b5947f54d6ef24d5580abd

Authored by rob
1 parent 31864f00

Added checked keyword to email notification check box when getting

a user from LDAP so that new users have email notification enabled
by default


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1981 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc
... ... @@ -111,7 +111,7 @@ function getDetailsLDAPPage($suserName, $aAttributes, $sUserIdentifier) {
111 111 $sToRender .= "<td>Mobile Number: </td><td><input size = \"40\" type=\"text\" name=\"fMobile\" value = \"" . $aUserAttributes["mobile"] ."\"> </td>\n";
112 112 $sToRender .= "</tr>\n";
113 113 $sToRender .= "<tr>\n";
114   - $sToRender .= "<td>Email Notification: </td><td><input type=\"checkbox\" name=\"fEmailNotification\"/> </td>\n";
  114 + $sToRender .= "<td>Email Notification: </td><td><input type=\"checkbox\" name=\"fEmailNotification\"/ CHECKED> </td>\n";
115 115 $sToRender .= "</tr>\n";
116 116 $sToRender .= "<tr>\n";
117 117 $sToRender .= "<td>Sms Notification: </td><td><input type=\"checkbox\" name=\"fSmsNotification\"/> </td>\n";
... ...