Code: Select all
ORDER BY t.topic_type " . ((!$store_reverse) ? 'DESC' : 'ASC') . ', t.topic_priority DESC, ' . $sql_sort_order;
Code: Select all
ORDER BY t.topic_type " . ((!$store_reverse) ? 'DESC' : 'ASC') . ', t.topic_priority ' . ((!$store_reverse) ? 'DESC' : 'ASC') . ', ' . $sql_sort_order;
You mean that you can't understand what this mod does?dugi wrote:i dont understand this
Any news on this? I have a similar issue on my board.Elglobo wrote:First, I am going to check the issue reported by manic2
yeah i don't understand what the mod doesChriZathens wrote:You mean that you can't understand what this mod does?dugi wrote:i dont understand this
Code: Select all
ALTER TABLE phpbb_topics ADD topic_priority SMALLINT DEFAULT '0' NOT NULL;
ALTER TABLE phpbb_topics ADD INDEX (topic_priority);