Page 1 of 1

Attachment Block Edit?

Posted: 21. October 2008 11:09
by shelliwood
I would ike to change it so the block show the most downloaded attachements rather than the most recent, but not sure how to go about it, any help?

Re: Attachment Block Edit?

Posted: 21. October 2008 11:34
by Kevin
Not tested:

Open portal/block/attachments.php

find:

Code: Select all

            ORDER BY
                filetime ' . ((!$config['display_order']) ? 'DESC' : 'ASC') . ', post_msg_id ASC';
replace with:

Code: Select all

            ORDER BY
                download_count ' . ((!$config['display_order']) ? 'DESC' : 'ASC') . ', post_msg_id ASC';

Re: Attachment Block Edit?

Posted: 21. October 2008 11:49
by shelliwood
Thanks, that works