After adding a computer, on the computer-info screen the "Computer type" item shows allways the first element in the database in alfabetical order. But at the database the stored computer type is correct.
Logged In: YES user_id=43372
I've submitted a patch for this in the Patches section
Logged In: NO
To fix this edit include/computers.functions.php In function showComputer locate: $name = $result["name"]; $date_mod = $result["date_mod"];
and add the line to retrieve the type from th db: $name = $result["name"]; $type = $result["type"]; $date_mod = $result["date_mod"];
Kind regards, Dirk.
Logged In: YES user_id=255024
This bug has now been fixed in the irm-pqm archive.
Thanks for reporting it.
Log in to post a comment.
Logged In: YES
user_id=43372
I've submitted a patch for this in the Patches section
Logged In: NO
To fix this edit include/computers.functions.php
In function showComputer locate:
$name = $result["name"];
$date_mod = $result["date_mod"];
and add the line to retrieve the type from th db:
$name = $result["name"];
$type = $result["type"];
$date_mod = $result["date_mod"];
Kind regards,
Dirk.
Logged In: YES
user_id=255024
This bug has now been fixed in the irm-pqm archive.
Thanks for reporting it.