bernd commited on 2009-12-28 13:58:41
Zeige 1 geänderte Dateien mit 2 Einfügungen und 1 Löschungen.
git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@1553 87cf0b9e-d624-0410-a070-f6ee81989793
... | ... |
@@ -135,8 +135,9 @@ if ($output_something) |
135 | 135 |
|
136 | 136 |
foreach ($users as $user) |
137 | 137 |
{ |
138 |
+ $username = str_replace('_', '_ ', $user['username']); |
|
138 | 139 |
$desc = ($user['description'] ? $user['description'].' (Erstellt: '.$user['created'].')' : 'Erstellt: '.$user['created']); |
139 |
- $form .= "<th><span title=\"{$desc}\">{$user['username']}</span><br />".internal_link("", icon_delete("Benutzer »{$user['username']}« löschen"), "action=delete_user&user={$user['username']}")."</th>"; |
|
140 |
+ $form .= "<th><span title=\"{$desc}\">{$username}</span><br />".internal_link("", icon_delete("Benutzer »{$user['username']}« löschen"), "action=delete_user&user={$user['username']}")."</th>"; |
|
140 | 141 |
} |
141 | 142 |
$form .= '<th><input type="text" name="new_user" size="10" value="" /><br />'.icon_add().'</th></tr> |
142 | 143 |
'; |
143 | 144 |