Skip to content
Snippets Groups Projects
Commit 7c962cf6 authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #2034 padding in Diff list history

parent b8e78717
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ $urlParameters = '';
$db->connect();
$db->query("SELECT firstname, lastname FROM users WHERE user_id = '".$tab[$i][$j]['value']."'");
$user = $db->fetch_object();
$tab[$i][$j]['value'] = $request->show_string(ucfirst($user->firstname) . " " . ucwords($user->lastname));
$tab[$i][$j]['value'] = ucwords($user->lastname) . " " . $request->show_string(ucfirst($user->firstname));
$tab[$i][$j]["size"]="15";
$tab[$i][$j]["label_align"]="left";
$tab[$i][$j]["align"]="left";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment