PDA

View Full Version : Gallery Order on Admin Page


dennis.hacker262917
03-24-2010, 11:24 AM
Is there a way to change the order in which the galleries are listed on the Admin Page? I would rather have the newest ones at the top of the list, since often times once I finish a gallery it isn't edited again.

Jimmy Wu
03-24-2010, 11:49 AM
To change this, you will want to open the choosegallery.php page in the Admin folder of your PowerGallery and find the query that looks like this:
$result_gallery = mysql_query('
SELECT *
FROM pg1_gallery
ORDER BY id ASC');

Modify the ORDER BY clause to look like this:
$result_gallery = mysql_query('
SELECT *
FROM pg1_gallery
ORDER BY id DESC');