1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 21:44:57 +02:00

Fix r10035

[ Sort private messages by message time and not message id. (Bug #50015) ]

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10037 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2009-08-20 15:06:16 +00:00
parent edc5061f1d
commit 3928e61952

View File

@ -462,7 +462,7 @@ function get_pm_from($folder_id, $folder, $user_id)
}
// Select the sort order
$directioin = ($sort_dir == 'd') ? 'ASC' : 'DESC';
$direction = ($sort_dir == 'd') ? 'ASC' : 'DESC';
$sql_start = max(0, $pm_count - $sql_limit - $start);
}
else