fix: correctly show conflicts in extension manager

This commit is contained in:
Michael Große 2017-08-27 19:51:02 +02:00
parent 85d3e2b76a
commit 9edb4cd501
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ class helper_plugin_extension_extension extends DokuWiki_Plugin {
* @return array The names of the conflicting extensions
*/
public function getConflicts() {
if (!empty($this->remoteInfo['conflicts'])) return $this->remoteInfo['dependencies'];
if (!empty($this->remoteInfo['conflicts'])) return $this->remoteInfo['conflicts'];
return array();
}