Changeset 851 for trunk/Modules/User/Options.php
- Timestamp:
- Jan 17, 2016, 10:07:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/User/Options.php
r848 r851 30 30 '<tr><td>'.T('Preferred client version').': </td><td>'.ClientVersionSelection($this->System->User->PreferredVersion).'</td></tr>'. 31 31 '<tr><td>'.T('Public profile text').':</td><td>'. 32 '<textarea name="info" cols="60" rows="10">'. $this->System->User->Info.'</textarea></td></tr>';32 '<textarea name="info" cols="60" rows="10">'.htmlspecialchars($this->System->User->Info).'</textarea></td></tr>'; 33 33 34 34 $Output .= '<tr><td>'; … … 64 64 $Output .= '<option value="'.$LineTeam['Id'].'"'; 65 65 if ($LineTeam['Id'] == $this->System->User->Team) $Output .= ' selected="selected"'; 66 $Output .= '>'. $LineTeam['Name'].'</option>';66 $Output .= '>'.htmlspecialchars($LineTeam['Name']).'</option>'; 67 67 } 68 68 $Output .= '</select> <input type="submit" value="'.T('Enter').'" />
Note:
See TracChangeset
for help on using the changeset viewer.