admin Site Admin

Joined: 01 Jan 1970 Posts: 582 Location: Somewhere on planet Earth ....
|
Posted: Fri Oct 26, 2007 3:02 am Post subject: |
|
|
In./admin/functions.php on line 1146 find this:
| Code: |
$result = mysql_query("SELECT * FROM `links` WHERE `category_id` = '".$id."' AND `visible` = '1' ORDER BY `recip` DESC, `gpr` DESC, `title` ASC LIMIT ".$from.", ".$limit."");
|
and replace with this:
| Code: |
$result = mysql_query("SELECT * FROM `links` WHERE `category_id` = '".$id."' AND `visible` = '1' ORDER BY `recip` DESC, `date` DESC, `title` ASC LIMIT ".$from.", ".$limit."");
|
_________________ Best regards,
Pavel Golovko
---------------------------
Help me help you. I'm not a God, and can not read your mind. If you got a problem, then please describe it well. |
|