Type: Improvement suggestion Software: shimmie2 Module: user Reference: http://trac.shishnet.org/shimmie2/browser/branches/branch_2.2/ext/user/theme.php Verified: Yes Solved: Yes Official res.: Unknown Author: Daniel Marschall Date: 2008-12-24 1. At the user page, all users should be listed with their names (except they have a " " in their username) ~ ext/user/theme.php # Find $u_id = url_escape($duser->id); $images_link = make_link("post/list/user_id=$u_id/1"); # Replace with $pos = strpos($duser->name, ' '); if ($pos === false) { $u_name = url_escape($duser->name); $images_link = make_link("post/list/user=$u_name/1"); } else { $u_id = url_escape($duser->id); $images_link = make_link("post/list/user_id=$u_id/1"); } # Line 135