diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-27 15:44:05 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-27 15:44:05 +0000 |
commit | 47cc239b1dd653be5373e8250ae3f5eeb70464e8 (patch) | |
tree | 42fca1f3c70e1d86b218871462e14062c3b3d1fb /phpBB/includes/functions.php | |
parent | f31d54d9d3649baf4baff79c1ebff89ef8021521 (diff) | |
download | forums-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.php | 3 |
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(); |