mirror of
https://git.code.sf.net/p/quake/website
synced 2025-02-17 17:31:39 +00:00
fix a dumb error quickly
This commit is contained in:
parent
52b544ca4b
commit
4f085d0253
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
$conn = @mysql_pconnect (sqlHost, sqlUser, sqlPass);
|
||||
if ($conn) {
|
||||
$query = 'SELECT p_date, p_user, p_news FROM devel_plans' .
|
||||
' ORDER BY n_date DESC';
|
||||
' ORDER BY p_date DESC, p_user';
|
||||
$result = @mysql_db_query (sqlDB, $query, $conn);
|
||||
if ($result) {
|
||||
$numRows = @mysql_num_rows ($result);
|
||||
|
|
Loading…
Reference in a new issue