aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-01-27 15:44:05 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-01-27 15:44:05 +0000
commit47cc239b1dd653be5373e8250ae3f5eeb70464e8 (patch)
tree42fca1f3c70e1d86b218871462e14062c3b3d1fb /phpBB/includes/functions.php
parentf31d54d9d3649baf4baff79c1ebff89ef8021521 (diff)
downloadforums-47cc239b1dd653be5373e8250ae3f5eeb70464e8.tar
forums-47cc239b1dd653be5373e8250ae3f5eeb70464e8.tar.gz
forums-47cc239b1dd653be5373e8250ae3f5eeb70464e8.tar.bz2
forums-47cc239b1dd653be5373e8250ae3f5eeb70464e8.tar.xz
forums-47cc239b1dd653be5373e8250ae3f5eeb70464e8.zip
Do away with icon_id > 1 business since it's no longer needed ... note you should delete the empty icon in your icons table.
git-svn-id: file:///svn/phpbb/trunk@3366 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index e954e28796..b48fc623c1 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -707,8 +707,7 @@ function obtain_icons(&$icons)
{
// Topic icons
$sql = "SELECT *
- FROM " . ICONS_TABLE . "
- WHERE icons_id > 1";
+ FROM " . ICONS_TABLE;
$result = $db->sql_query($sql);
$icons = array();