aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_icons.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-27 16:24:21 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-27 16:24:21 +0000
commitce4445f74a28eaee02c8d90c1a04a759cf88a9c3 (patch)
treefc3af067265d1df62ec14ae912fa5333a535b789 /phpBB/includes/acp/acp_icons.php
parentb51b978854adf0e5cd902f01cd2da9f34f19429d (diff)
downloadforums-ce4445f74a28eaee02c8d90c1a04a759cf88a9c3.tar
forums-ce4445f74a28eaee02c8d90c1a04a759cf88a9c3.tar.gz
forums-ce4445f74a28eaee02c8d90c1a04a759cf88a9c3.tar.bz2
forums-ce4445f74a28eaee02c8d90c1a04a759cf88a9c3.tar.xz
forums-ce4445f74a28eaee02c8d90c1a04a759cf88a9c3.zip
- remove description from profile fields
- added disclaimer about DEBUG_EXTRA to the ACP (i think this is needed - some idiots might think it is wise to have this enabled on a production board. :) We *may* let it there for the Betas though, but it will be removed during the RC's) - some bugfixes git-svn-id: file:///svn/phpbb/trunk@5973 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_icons.php')
-rw-r--r--phpBB/includes/acp/acp_icons.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_icons.php b/phpBB/includes/acp/acp_icons.php
index 0db02be9cb..69b37c2427 100644
--- a/phpBB/includes/acp/acp_icons.php
+++ b/phpBB/includes/acp/acp_icons.php
@@ -485,13 +485,15 @@ class acp_icons
while ($row = $db->sql_fetchrow($result))
{
$pak .= "'" . addslashes($row[$fields . '_url']) . "', ";
- $pak .= "'" . addslashes($row[$fields . '_height']) . "', ";
$pak .= "'" . addslashes($row[$fields . '_width']) . "', ";
+ $pak .= "'" . addslashes($row[$fields . '_height']) . "', ";
+
if ($mode == 'smilies')
{
$pak .= "'" . addslashes($row['emotion']) . "', ";
$pak .= "'" . addslashes($row['code']) . "', ";
}
+
$pak .= "\n";
}
$db->sql_freeresult($result);