Skip to content

Commit

Permalink
Merge pull request #618 from following5/1128-fix-adminhistory-logs
Browse files Browse the repository at this point in the history
fixed deleted logs display in admin cache-history
  • Loading branch information
teiling88 committed Sep 19, 2017
2 parents dba9400 + eaa0fb7 commit e43d829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/lib2/logic/cache.class.php
Expand Up @@ -950,7 +950,7 @@ public function setTplHistoryData($exclude_report_id)
sql_value("SELECT `username` FROM `user` WHERE `user_id`='&1'", "", $rCache['user_id'])
);

$tpl->assign('deleted_logs', $this->getLogsArray($this->getCacheId(), 0, 1000, true));
$tpl->assign('deleted_logs', $this->getLogsArray(0, 1000, true));

// status changes
$rs = sql(
Expand Down

0 comments on commit e43d829

Please sign in to comment.