diff options
author | Rahul <rahulr92@phpbb.com> | 2012-03-31 23:25:13 +0530 |
---|---|---|
committer | Rahul R <rahulr92@gmail.com> | 2012-04-05 00:46:01 +0530 |
commit | 1dd5b48434a8defe82860666750c8e78f62cc933 (patch) | |
tree | ae0d61916ae871e5826d9817fad8c4038676d674 | |
parent | 01e6254ccca0536a43703c118496b189654d3904 (diff) | |
download | forums-1dd5b48434a8defe82860666750c8e78f62cc933.tar forums-1dd5b48434a8defe82860666750c8e78f62cc933.tar.gz forums-1dd5b48434a8defe82860666750c8e78f62cc933.tar.bz2 forums-1dd5b48434a8defe82860666750c8e78f62cc933.tar.xz forums-1dd5b48434a8defe82860666750c8e78f62cc933.zip |
[ticket/10650] Corrected space before true
Inserted a space before 'true' as per coding
guidelines.
PHPBB3-10650
-rw-r--r-- | phpBB/includes/acp/acp_forums.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_forums.php b/phpBB/includes/acp/acp_forums.php index 29eabba0c7..5323a0e4e6 100644 --- a/phpBB/includes/acp/acp_forums.php +++ b/phpBB/includes/acp/acp_forums.php @@ -133,7 +133,7 @@ class acp_forums 'forum_style' => request_var('forum_style', 0), 'display_subforum_list' => request_var('display_subforum_list', false), 'display_on_index' => request_var('display_on_index', false), - 'display_last_subject' => request_var('display_last_subject',true), + 'display_last_subject' => request_var('display_last_subject', true), 'forum_topics_per_page' => request_var('topics_per_page', 0), 'enable_indexing' => request_var('enable_indexing', true), 'enable_icons' => request_var('enable_icons', false), |