aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-10-07 13:14:58 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-10-07 13:14:58 +0000
commite4a4bd0d4eb7311efb10e28fdc81d882f42b10f1 (patch)
tree1859fd4768e5820fbd126e2cf5f3923809272987 /phpBB
parentf8528a659c919d7bc1e78c5aacc95e27cddec627 (diff)
downloadforums-e4a4bd0d4eb7311efb10e28fdc81d882f42b10f1.tar
forums-e4a4bd0d4eb7311efb10e28fdc81d882f42b10f1.tar.gz
forums-e4a4bd0d4eb7311efb10e28fdc81d882f42b10f1.tar.bz2
forums-e4a4bd0d4eb7311efb10e28fdc81d882f42b10f1.tar.xz
forums-e4a4bd0d4eb7311efb10e28fdc81d882f42b10f1.zip
Minor typo
git-svn-id: file:///svn/phpbb/trunk@6453 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rwxr-xr-xphpBB/includes/mcp/mcp_notes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_notes.php b/phpBB/includes/mcp/mcp_notes.php
index cc4ed0e72b..0a6beb60e2 100755
--- a/phpBB/includes/mcp/mcp_notes.php
+++ b/phpBB/includes/mcp/mcp_notes.php
@@ -161,7 +161,7 @@ class mcp_notes
$limit_days = array(0 => $user->lang['ALL_ENTRIES'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']);
$sort_by_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_DATE'], 'c' => $user->lang['SORT_IP'], 'd' => $user->lang['SORT_ACTION']);
- $sort_by_sql = array('a' => 'l.username', 'b' => 'l.log_time', 'c' => 'l.log_ip', 'd' => 'l.log_operation');
+ $sort_by_sql = array('a' => 'u.username', 'b' => 'l.log_time', 'c' => 'l.log_ip', 'd' => 'l.log_operation');
$s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = '';
gen_sort_selects($limit_days, $sort_by_text, $st, $sk, $sd, $s_limit_days, $s_sort_key, $s_sort_dir, $u_sort_param);