|
From: Meik S. <acy...@ph...> - 2009-08-20 15:06:34
|
Author: acydburn
Date: Thu Aug 20 16:06:16 2009
New Revision: 10037
Log:
Fix r10035
[ Sort private messages by message time and not message id. (Bug #50015) ]
Modified:
branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_pm_viewfolder.php
Modified: branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_pm_viewfolder.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_pm_viewfolder.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_pm_viewfolder.php Thu Aug 20 16:06:16 2009
***************
*** 462,468 ****
}
// Select the sort order
! $directioin = ($sort_dir == 'd') ? 'ASC' : 'DESC';
$sql_start = max(0, $pm_count - $sql_limit - $start);
}
else
--- 462,468 ----
}
// Select the sort order
! $direction = ($sort_dir == 'd') ? 'ASC' : 'DESC';
$sql_start = max(0, $pm_count - $sql_limit - $start);
}
else
|