diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-08-09 22:11:52 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-08-09 22:11:52 +0200 |
commit | 1e0eea17dc60dc6f5ec81ffcca313db353c88c44 (patch) | |
tree | 0820280e4b22c02aae07bd577e40941bb3b09d9d | |
parent | 8251e9612a372ea2e25e0d896fb0c3b8e4c3af73 (diff) | |
download | rpg-1e0eea17dc60dc6f5ec81ffcca313db353c88c44.tar.gz rpg-1e0eea17dc60dc6f5ec81ffcca313db353c88c44.tar.bz2 |
fixed popularity display
-rw-r--r-- | lib/plugins/extension/helper/extension.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/extension/helper/extension.php b/lib/plugins/extension/helper/extension.php index dc570aa0d..b3bce082f 100644 --- a/lib/plugins/extension/helper/extension.php +++ b/lib/plugins/extension/helper/extension.php @@ -349,7 +349,7 @@ class helper_plugin_extension_extension extends DokuWiki_Plugin { * @return float|bool The popularity information or false if it isn't available */ public function getPopularity() { - if (!empty($this->remoteInfo['popularity'])) return $this->remoteInfo['popularity']/200.0; + if (!empty($this->remoteInfo['popularity'])) return $this->remoteInfo['popularity']; return false; } |