How can I change the order of the pics when editing them?
By default, the pics are shown alphabetically when you edit them. To change the sorting order to “by date”, edit editpics.php and change $sql = “SELECT p.*,a.category FROM {$CONFIG[‘TABLE_PICTURES’]} as p “. “INNER JOIN {$CONFIG[‘TABLE_ALBUMS’]} as a “. “ON a.aid=p.aid “. “WHERE p.aid = ‘$album_id’ “. “ORDER BY p.filename LIMIT $start, $count”; $result = cpg_db_query($sql); to $sql = “SELECT p.*,a.category FROM {$CONFIG[‘TABLE_PICTURES’]} as p “. “INNER JOIN {$CONFIG[‘TABLE_ALBUMS’]} as a “. “ON a.aid=p.aid “. “WHERE p.aid = ‘$album_id’ “.