diff options
author | Petsagourakis George <petsagouris@gmail.com> | 2011-02-12 16:56:19 +0200 |
---|---|---|
committer | Petsagourakis George <petsagouris@gmail.com> | 2011-02-12 16:56:19 +0200 |
commit | f6896f7b9d2a9e838f146a100203b95056b8eb1b (patch) | |
tree | b43c8d74ad12d6e145cce522e2bf64bd53c84b11 /lib/plugins | |
parent | e86ed94b44e3e250bf2cb97e784a4b7b1caf94aa (diff) | |
download | rpg-f6896f7b9d2a9e838f146a100203b95056b8eb1b.tar.gz rpg-f6896f7b9d2a9e838f146a100203b95056b8eb1b.tar.bz2 |
fixed error in popularity/helper.php (a quoted array instruction error'd ...)
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/popularity/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/popularity/helper.php b/lib/plugins/popularity/helper.php index 629d0bd67..5ce562319 100644 --- a/lib/plugins/popularity/helper.php +++ b/lib/plugins/popularity/helper.php @@ -60,7 +60,7 @@ class helper_plugin_popularity extends Dokuwiki_Plugin { $result[] = array( 'name' => 'lastSentTime', 'desc' => 'Compute the last time popularity data was sent', - 'params' => 'array()', + 'params' => array(), 'return' => array('data' => 'int') ); return $result; |