SimpleDesk

SimpleDesk! => SimpleDesk Tracker => Topic started by: tfs on September 08, 2011, 11:00:13 PM

Title: [Fixed] Complete log first page shows everything
Post by: tfs on September 08, 2011, 11:00:13 PM
2.0 - When going to the full action log (All tickets), the entire log is shown.  Even though there's 70 pages of logs... page 1 shows the whole log.  Page 2+ shows the proper values, but page 1 shows the whole thing.
Title: Re: Complete log first page shows everything
Post by: [SiNaN] on September 24, 2011, 04:06:09 PM
Subs-SimpleDeskAdmin.php

Code (Find) Select
' . ($start != 0 ? 'LIMIT {int:start}, {int:items_per_page}' : ''),

Code (Replace) Select
' . ($items_per_page != 0 ? 'LIMIT {int:start}, {int:items_per_page}' : ''),

Then you need to change the the second parameter to 0 where you want the full log to be displayed (ie. profile, ticket view).