Sorting albums alphabetically Sorting albums alphabetically
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Sorting albums alphabetically

Started by Criss, June 21, 2010, 01:04:25 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Criss

Hi,

Can anyone tell me how can I sort albums alphabetically under category? Modification for version 1.4 doesn't work anymore.

http://joejonasphotos.org


Joachim Müller

The instructions in the other thread say you need to replace ORDER BY a.poswith ORDER BY a.titlein index.php in the relevant queries. Did you try that? It's in the code two times - the corresponding queries are        $sql = 'SELECT a.aid, a.title, a.description, a.thumb, a.keyword, category, visibility, filepath, filename, url_prefix, pwidth, pheight, a.owner '
            . ' FROM ' . $CONFIG['TABLE_ALBUMS'] . ' as a '
            . ' LEFT JOIN ' . $CONFIG['TABLE_PICTURES'] . ' as p ' . 'ON a.thumb=p.pid '
            . ' WHERE a.category=' . $cat . $album_filter
            . ' ORDER BY a.pos, a.aid ' . $limit;
and    $sql = "SELECT a.aid, count( p.pid ) AS pic_count, max( p.pid ) AS last_pid, max( p.ctime ) AS last_upload, a.keyword, a.alb_hits"
            ." FROM {$CONFIG['TABLE_ALBUMS']} AS a "
            ." LEFT JOIN {$CONFIG['TABLE_PICTURES']} AS p ON a.aid = p.aid AND p.approved = 'YES' "
            ." WHERE a.category = $cat $album_filter GROUP BY a.aid ORDER BY a.pos, a.aid $limit";

Criss