diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-01-05 20:39:25 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-01-05 20:39:25 +0100 |
commit | bcdcd3d147fd8bcc680f24de88120c23d9533b50 (patch) | |
tree | bb6aa0c7bd1d7e3a41edbb641a9e53e33bde95f7 /lib/plugins/extension/helper | |
parent | 168f022328fee27758bfd983b209a579621409f6 (diff) | |
download | rpg-bcdcd3d147fd8bcc680f24de88120c23d9533b50.tar.gz rpg-bcdcd3d147fd8bcc680f24de88120c23d9533b50.tar.bz2 |
do not show updates for bundled plugins
Diffstat (limited to 'lib/plugins/extension/helper')
-rw-r--r-- | lib/plugins/extension/helper/extension.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/plugins/extension/helper/extension.php b/lib/plugins/extension/helper/extension.php index e3cb8a410..be29f95d8 100644 --- a/lib/plugins/extension/helper/extension.php +++ b/lib/plugins/extension/helper/extension.php @@ -145,6 +145,7 @@ class helper_plugin_extension_extension extends DokuWiki_Plugin { */ public function updateAvailable() { if(!$this->isInstalled()) return false; + if($this->isBundled()) return false; $lastupdate = $this->getLastUpdate(); if ($lastupdate === false) return false; $installed = $this->getInstalledVersion(); |