diff options
author | 2011-12-15 13:22:04 +0000 | |
---|---|---|
committer | 2011-12-15 13:22:04 +0000 | |
commit | a3e8d3b00b4f43be8dd0a4c109eacb51677e53e2 (patch) | |
tree | fdc200b7dcdb0ce3e3fa2eb20b99a37371182045 /phpBB/includes/acp | |
parent | Merge remote-tracking branch 'github-igorw/feature/functional-tests' into dev... (diff) | |
download | phpbb-a3e8d3b00b4f43be8dd0a4c109eacb51677e53e2.tar.gz phpbb-a3e8d3b00b4f43be8dd0a4c109eacb51677e53e2.tar.bz2 phpbb-a3e8d3b00b4f43be8dd0a4c109eacb51677e53e2.zip |
[ticket/10463] removed extra comma in malformed query in acp_styles.php
PHPBB3-10463
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r-- | phpBB/includes/acp/acp_styles.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index fc9acbbcb8..c480021507 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -2400,7 +2400,7 @@ version = {VERSION} $select_bf = ''; } - $sql = "SELECT {$mode}_id, {$mode}_name, {$mode}_path, $select_bf + $sql = "SELECT {$mode}_id, {$mode}_name, {$mode}_path $select_bf FROM $sql_from WHERE {$mode}_name = '" . $db->sql_escape($cfg_data['inherit_from']) . "' AND {$mode}_inherits_id = 0"; |