diff options
author | PayBas <contact@paybas.com> | 2014-09-15 15:25:43 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-09-15 15:25:43 +0200 |
commit | 0061a305d8b440995d11ec48c5ae81fc6023ad7e (patch) | |
tree | 6e0e6893de48f1393aa4df9c46237ed480f02ccf | |
parent | 5a780dfab1ba972bc116b4fdd4e8dfa186f9c74a (diff) | |
download | forums-0061a305d8b440995d11ec48c5ae81fc6023ad7e.tar forums-0061a305d8b440995d11ec48c5ae81fc6023ad7e.tar.gz forums-0061a305d8b440995d11ec48c5ae81fc6023ad7e.tar.bz2 forums-0061a305d8b440995d11ec48c5ae81fc6023ad7e.tar.xz forums-0061a305d8b440995d11ec48c5ae81fc6023ad7e.zip |
[ticket/12408] Fix white-space sniffer
PHPBB3-12408
-rw-r--r-- | phpBB/includes/acp/acp_board.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index 4cc579c256..a8b72f6c0b 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -65,7 +65,7 @@ class acp_board 'default_lang' => array('lang' => 'DEFAULT_LANGUAGE', 'validate' => 'lang', 'type' => 'select', 'function' => 'language_select', 'params' => array('{CONFIG_VALUE}'), 'explain' => false), 'default_dateformat' => array('lang' => 'DEFAULT_DATE_FORMAT', 'validate' => 'string', 'type' => 'custom', 'method' => 'dateformat_select', 'explain' => true), 'board_timezone' => array('lang' => 'SYSTEM_TIMEZONE', 'validate' => 'timezone', 'type' => 'custom', 'method' => 'timezone_select', 'explain' => true), - + 'legend2' => 'BOARD_STYLE', 'default_style' => array('lang' => 'DEFAULT_STYLE', 'validate' => 'int', 'type' => 'select', 'function' => 'style_select', 'params' => array('{CONFIG_VALUE}', false), 'explain' => true), 'guest_style' => array('lang' => 'GUEST_STYLE', 'validate' => 'int', 'type' => 'select', 'function' => 'style_select', 'params' => array($this->guest_style_get(), false), 'explain' => true), @@ -930,7 +930,7 @@ class acp_board { global $db; - $sql = 'SELECT user_style + $sql = 'SELECT user_style FROM ' . USERS_TABLE . ' WHERE user_id = ' . ANONYMOUS; $result = $db->sql_query($sql); |