First let me say I'm glad someone has picked this project up. I like the new look. I've found a few oddities in my system that have easy enough fixes:
1. Deleting a request the delete box appears under the header graphics. I put in a few line feeds to move it down.
2. Deleting a user had the same problem and fix as the first problem.
3. There is a querey off somewhere when adding a new ticket. The select statement is grabbing the first record where the Request name is the same. For example the "General" request displays the first Department name on the third screen. If you have a unique name then it appears OK. I took the lazy way out and added this line to the adddepartment.scp.php at poision 59:
First let me say I'm glad someone has picked this project up. I like the new look. I've found a few oddities in my system that have easy enough fixes:
1. Deleting a request the delete box appears under the header graphics. I put in a few line feeds to move it down.
2. Deleting a user had the same problem and fix as the first problem.
3. There is a querey off somewhere when adding a new ticket. The select statement is grabbing the first record where the Request name is the same. For example the "General" request displays the first Department name on the third screen. If you have a unique name then it appears OK. I took the lazy way out and added this line to the adddepartment.scp.php at poision 59:
$l_default_category_name = $txtDepartmentKey . "-" . $l_default_category_name;