Quote:
Originally Posted by The Ottoman
I'm wondering if there is a way to sort the images from newest to oldest. Currently images are displayed oldest to newest which can be a pain if you are looking for the picture that you just uploaded.
|
I figured out how to do it myself.
Edit line #176 to read:
Code:
$sql="Select imgid,imgfile,imgname,thumbname,imgfilesize,imgwidth,imgheight,imgdate,imgprivate FROM ".TABLE_PREFIX ."vbimghost Where userid=$userid ORDER by imgdate DESC LIMIT $init,$perpage ";
Basically add DESC right after the ORDER by imgdate.
Duh.