Skip to content
Snippets Groups Projects
Commit 4e2f8fb7 authored by Thomas Lake's avatar Thomas Lake :wrench:
Browse files

Correctly extract old user page count from DB

parent 83f21ec5
No related branches found
No related tags found
2 merge requests!106Merge from beta: Correctly extract old user page count from DB,!105Correctly extract old user page count from DB
Pipeline #570 passed
......@@ -98,7 +98,7 @@ $res->Close();
//get the number of pages printed by "old" users and add it to the total
$res = $sucsDB->Execute("select sum(pages) as pages from printer where username = 'old' group by username order by sum(pages) desc");
$old = $res->FetchRow();
$old = $old[0];
$old = $old['pages'];
$res->Close();
$total += $old;
//Output two lines at the bottem of the table, one for "old" users and the other for the total
......
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