diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-10-09 23:46:58 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-10-09 23:46:58 -0400 |
commit | 74e41e79d1a82389da7ea000550ff1100da2059d (patch) | |
tree | 47bd112edd0ac7da7d10da957550fa8dc9fea5c2 | |
parent | 3fa0ab70734a956d4e56667786c6669d44965d48 (diff) | |
parent | cf810fb775407d6e6e5aa62a072b141bdb61e3c9 (diff) | |
download | forums-74e41e79d1a82389da7ea000550ff1100da2059d.tar forums-74e41e79d1a82389da7ea000550ff1100da2059d.tar.gz forums-74e41e79d1a82389da7ea000550ff1100da2059d.tar.bz2 forums-74e41e79d1a82389da7ea000550ff1100da2059d.tar.xz forums-74e41e79d1a82389da7ea000550ff1100da2059d.zip |
Merge PR #1008 branch 'EXreaction/ticket/11140' into develop
* EXreaction/ticket/11140:
[ticket/11140] Fix an error from an incorrect variable name
-rw-r--r-- | phpBB/includes/mcp/mcp_front.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_front.php b/phpBB/includes/mcp/mcp_front.php index 13398e62bc..ba4b15895a 100644 --- a/phpBB/includes/mcp/mcp_front.php +++ b/phpBB/includes/mcp/mcp_front.php @@ -251,7 +251,7 @@ function mcp_front_view($id, $mode, $action) 'ORDER_BY' => 'p.message_time DESC', ); - $sql_ary = $db->sql_build_query('SELECT', $sql_ary); + $sql = $db->sql_build_query('SELECT', $sql_ary); $result = $db->sql_query_limit($sql, 5); $pm_by_id = $pm_list = array(); |