summaryrefslogtreecommitdiffstats
path: root/templates/show_plugins.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-08-14 06:13:32 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-08-14 06:13:32 +0000
commit089cd9100a6b94602df62e07e5b7a9b2c563ef95 (patch)
tree73ad2d782245e593b0fc98d98cd31dfe3e1e4ac8 /templates/show_plugins.inc.php
parentab9aec092c66f090eb77ac6a53e37a02a9aecbbf (diff)
downloadampache-089cd9100a6b94602df62e07e5b7a9b2c563ef95.tar.gz
ampache-089cd9100a6b94602df62e07e5b7a9b2c563ef95.tar.bz2
ampache-089cd9100a6b94602df62e07e5b7a9b2c563ef95.zip
tweaked theme a tad, updated lastfm plugin, requires remove/readadd to work correctly
Diffstat (limited to 'templates/show_plugins.inc.php')
-rw-r--r--templates/show_plugins.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_plugins.inc.php b/templates/show_plugins.inc.php
index 96957942..fea2af15 100644
--- a/templates/show_plugins.inc.php
+++ b/templates/show_plugins.inc.php
@@ -31,7 +31,7 @@ $web_path = Config::get('web_path');
<?php
foreach ($plugins as $plugin_name) {
$plugin = new Plugin($plugin_name);
- if (!Plugin::is_installed($plugin_name)) {
+ if (!Plugin::is_installed($plugin->_plugin->name)) {
$action = "<a href=\"" . $web_path . "/admin/modules.php?action=install_plugin&amp;plugin=" . scrub_out($plugin_name) . "\">" .
_('Activate') . "</a>";
}