aboutsummaryrefslogtreecommitdiff
path: root/mod/logbrowser
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-06 15:07:38 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-06 15:07:38 +0000
commit47a202fac7dae828f6e2f195b730338efa68f357 (patch)
tree9f97d9fb6c135bb162450950db31854e34c73bc8 /mod/logbrowser
parent29dac199c057827876374038993da55c8c35267f (diff)
downloadelgg-47a202fac7dae828f6e2f195b730338efa68f357.tar.gz
elgg-47a202fac7dae828f6e2f195b730338efa68f357.tar.bz2
Refs #402 and #407: Extra fields added to system_log
git-svn-id: https://code.elgg.org/elgg/trunk@2189 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/logbrowser')
-rw-r--r--mod/logbrowser/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/logbrowser/index.php b/mod/logbrowser/index.php
index 6245a257a..87ffe58e6 100644
--- a/mod/logbrowser/index.php
+++ b/mod/logbrowser/index.php
@@ -42,8 +42,8 @@
$title = elgg_view_title(elgg_echo('logbrowser'));
// Get log entries
- $log = get_system_log($user, "", "", $limit, $offset, false, $timeupper, $timelower);
- $count = get_system_log($user, "", "", $limit, $offset, true, $timeupper, $timelower);
+ $log = get_system_log($user, "", "", "","", $limit, $offset, false, $timeupper, $timelower);
+ $count = get_system_log($user, "", "", "","", $limit, $offset, true, $timeupper, $timelower);
$log_entries = array();
foreach ($log as $l)