Commit dc4361165b33757e5554b5bf3a32f6f0874645db

Authored by michael
1 parent adada805

(#3032) added missing slash


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2730 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc
... ... @@ -80,7 +80,7 @@ function getDetailsDBPage($sUserName, $aAttributes) {
80 80 $sToRender .= "<td>Mobile: </td><td><input size = \"40\" type=\"text\" name=\"fMobile\" value = \"" . $aUserAttributes["mobile"] ."\"> </td>\n";
81 81 $sToRender .= "</tr>\n";
82 82 $sToRender .= "<tr>\n";
83   - $sToRender .= "<td>Email Notification: </td><td><input type=\"checkbox\" name=\"fEmailNotification\" " . (isset($aUserAttributes["email_notification"]) ? "value=\"" . $aUserAttributes["email_notification"] . "\" " : "") . ($aUserAttributes["email_notification"] == "1" ? "checked" : "") . "\"> </td>\n";
  83 + $sToRender .= "<td>Email Notification: </td><td><input type=\"checkbox\" name=\"fEmailNotification\" " . (isset($aUserAttributes["email_notification"]) ? "value=\"" . $aUserAttributes["email_notification"] . "\" " : "") . ($aUserAttributes["email_notification"] == "1" ? "checked" : "") . "> </td>\n";
84 84 $sToRender .= "</tr>\n";
85 85 $sToRender .= "<tr><td><b>Initial Group</b></td><td>" . getGroupListBox() . "</td></tr>\n";
86 86 $sToRender .= "<tr>\n";
... ... @@ -116,7 +116,7 @@ function getDetailsLDAPPage($sUserName, $aAttributes, $sUserIdentifier) {
116 116 $sToRender .= "<td>Mobile Number: </td><td><input size = \"40\" type=\"text\" name=\"fMobile\" value = \"" . $aUserAttributes["mobile"] ."\"> </td>\n";
117 117 $sToRender .= "</tr>\n";
118 118 $sToRender .= "<tr>\n";
119   - $sToRender .= "<td>Email Notification: </td><td><input type=\"checkbox\" name=\"fEmailNotification\"/ CHECKED> </td>\n";
  119 + $sToRender .= "<td>Email Notification: </td><td><input type=\"checkbox\" name=\"fEmailNotification\" CHECKED/> </td>\n";
120 120 $sToRender .= "</tr>\n";
121 121 $sToRender .= "<tr>\n";
122 122 $sToRender .= "<td>Sms Notification: </td><td><input type=\"checkbox\" name=\"fSmsNotification\"/> </td>\n";
... ...