mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:38:53 +00: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:
parent
edc5061f1d
commit
3928e61952
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue