summaryrefslogtreecommitdiff
path: root/lib/plugins/popularity/helper.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-10-07 20:34:34 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-10-07 20:34:34 +0200
commit506c1de7b3fee44073b5ec5d944de4cbb03960a5 (patch)
tree0ae7fc98b60337e3a39bf43a6f5c4f4dadf5c7ea /lib/plugins/popularity/helper.php
parent3046a46462b44f28b1e5b1b25240a8ac4a859020 (diff)
downloadrpg-506c1de7b3fee44073b5ec5d944de4cbb03960a5.tar.gz
rpg-506c1de7b3fee44073b5ec5d944de4cbb03960a5.tar.bz2
fixed warning in popularity plugin FS#2628
Diffstat (limited to 'lib/plugins/popularity/helper.php')
-rw-r--r--lib/plugins/popularity/helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/popularity/helper.php b/lib/plugins/popularity/helper.php
index af1e8a706..34521021d 100644
--- a/lib/plugins/popularity/helper.php
+++ b/lib/plugins/popularity/helper.php
@@ -143,7 +143,7 @@ class helper_plugin_popularity extends Dokuwiki_Plugin {
// number and size of pages
$list = array();
- search($list,$conf['datadir'],array($this,'_search_count'),'','');
+ search($list,$conf['datadir'],array($this,'_search_count'),array('all'=>false),'');
$data['page_count'] = $list['file_count'];
$data['page_size'] = $list['file_size'];
$data['page_biggest'] = $list['file_max'];