diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2003-05-01 18:24:18 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-05-01 18:24:18 +0000 |
commit | 9def7a65e39cdd65b0d32e28888801c584917549 (patch) | |
tree | 0d81b11836fd377b955472093c9c132917bb953d /phpBB/viewtopic.php | |
parent | 3a4e4374dc3a788b5ccafa882da92421fd301866 (diff) | |
download | forums-9def7a65e39cdd65b0d32e28888801c584917549.tar forums-9def7a65e39cdd65b0d32e28888801c584917549.tar.gz forums-9def7a65e39cdd65b0d32e28888801c584917549.tar.bz2 forums-9def7a65e39cdd65b0d32e28888801c584917549.tar.xz forums-9def7a65e39cdd65b0d32e28888801c584917549.zip |
changed attachment processing (posting), the old way was a mess. :)
git-svn-id: file:///svn/phpbb/trunk@3960 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index df06dc22f5..4ba92ad7d7 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -821,7 +821,7 @@ if (count($attach_list)) FROM ' . ATTACHMENTS_TABLE . ' a, ' . ATTACHMENTS_DESC_TABLE . ' d WHERE a.post_id IN (' . implode(', ', $attach_list) . ') AND a.attach_id = d.attach_id - ORDER BY d.filetime ' . ((!$config['display_order']) ? 'ASC' : 'DESC') . ', a.post_id ASC'; + ORDER BY d.filetime ' . ((!$config['display_order']) ? 'DESC' : 'ASC') . ', a.post_id ASC'; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) |