aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_modules.php
diff options
context:
space:
mode:
authorDominik Dröscher <dhn2@users.sourceforge.net>2007-03-06 16:06:19 +0000
committerDominik Dröscher <dhn2@users.sourceforge.net>2007-03-06 16:06:19 +0000
commit44fab300022812cb63e3270bdf4f575f1e4117ed (patch)
treeaec8d4c95607562eb549b723f2f4b2d2d99ecebf /phpBB/includes/acp/acp_modules.php
parent2f516661aca09b656a907208bed7ba5ef6a92c68 (diff)
downloadforums-44fab300022812cb63e3270bdf4f575f1e4117ed.tar
forums-44fab300022812cb63e3270bdf4f575f1e4117ed.tar.gz
forums-44fab300022812cb63e3270bdf4f575f1e4117ed.tar.bz2
forums-44fab300022812cb63e3270bdf4f575f1e4117ed.tar.xz
forums-44fab300022812cb63e3270bdf4f575f1e4117ed.zip
Be gone thou hardcoded image dimensions! There is not enough room for both of us!
git-svn-id: file:///svn/phpbb/trunk@7137 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_modules.php')
-rw-r--r--phpBB/includes/acp/acp_modules.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_modules.php b/phpBB/includes/acp/acp_modules.php
index a1917b1717..e82365d0a5 100644
--- a/phpBB/includes/acp/acp_modules.php
+++ b/phpBB/includes/acp/acp_modules.php
@@ -396,11 +396,11 @@ class acp_modules
if (!$row['module_enabled'])
{
- $module_image = '<img src="images/icon_folder_lock.gif" width="46" height="25" alt="' . $user->lang['DEACTIVATED_MODULE'] .'" />';
+ $module_image = '<img src="images/icon_folder_lock.gif" alt="' . $user->lang['DEACTIVATED_MODULE'] .'" />';
}
else
{
- $module_image = (!$row['module_basename'] || $row['left_id'] + 1 != $row['right_id']) ? '<img src="images/icon_subfolder.gif" width="46" height="25" alt="' . $user->lang['CATEGORY'] . '" />' : '<img src="images/icon_folder.gif" width="46" height="25" alt="' . $user->lang['MODULE'] . '" />';
+ $module_image = (!$row['module_basename'] || $row['left_id'] + 1 != $row['right_id']) ? '<img src="images/icon_subfolder.gif" alt="' . $user->lang['CATEGORY'] . '" />' : '<img src="images/icon_folder.gif" alt="' . $user->lang['MODULE'] . '" />';
}
$url = $this->u_action . '&amp;parent_id=' . $this->parent_id . '&amp;m=' . $row['module_id'];