diff options
author | Matt Friedman <maf675@gmail.com> | 2014-04-10 09:10:01 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-04-10 09:10:01 -0700 |
commit | eb6b877330f5a976c152404f83683bf93fc045ce (patch) | |
tree | 6b16e3242e41b07b7789902d92bb36cb08711cf3 | |
parent | 49885e55e74335a6e2a1135bd00f23b01849ae80 (diff) | |
download | forums-eb6b877330f5a976c152404f83683bf93fc045ce.tar forums-eb6b877330f5a976c152404f83683bf93fc045ce.tar.gz forums-eb6b877330f5a976c152404f83683bf93fc045ce.tar.bz2 forums-eb6b877330f5a976c152404f83683bf93fc045ce.tar.xz forums-eb6b877330f5a976c152404f83683bf93fc045ce.zip |
[ticket/12380] Explicity state the order of sorting for login keys
PHPBB3-12380
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index fc1b7153d2..00b53b6576 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -673,7 +673,7 @@ class ucp_profile $sql = 'SELECT key_id, last_ip, last_login FROM ' . SESSIONS_KEYS_TABLE . ' WHERE user_id = ' . (int) $user->data['user_id'] . ' - ORDER BY last_login'; + ORDER BY last_login ASC'; $result = $db->sql_query($sql); |