aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgeetakshi <geetakshi.19@gmail.com>2014-03-24 00:12:40 +0530
committergeetakshi <geetakshi.19@gmail.com>2014-03-24 00:12:40 +0530
commit76f7ef5c837345c80f0dcefb6787f23a9c0159e7 (patch)
tree3ed3ecd5c62f152e56b132e2f2df0920c2c6f7e4
parent5afb06102b4343971947278a1633791597342a6f (diff)
downloadforums-76f7ef5c837345c80f0dcefb6787f23a9c0159e7.tar
forums-76f7ef5c837345c80f0dcefb6787f23a9c0159e7.tar.gz
forums-76f7ef5c837345c80f0dcefb6787f23a9c0159e7.tar.bz2
forums-76f7ef5c837345c80f0dcefb6787f23a9c0159e7.tar.xz
forums-76f7ef5c837345c80f0dcefb6787f23a9c0159e7.zip
[ticket/11360] Updating default value of $display_online_list
PHPBB3-11360
-rw-r--r--phpBB/faq.php2
-rw-r--r--phpBB/includes/functions_module.php2
-rw-r--r--phpBB/mcp.php2
-rw-r--r--phpBB/ucp.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/faq.php b/phpBB/faq.php
index 052f78816e..53de850195 100644
--- a/phpBB/faq.php
+++ b/phpBB/faq.php
@@ -76,7 +76,7 @@ $template->assign_vars(array(
'SWITCH_COLUMN_MANUALLY' => (!$found_switch) ? true : false,
));
-page_header($l_title, false);
+page_header($l_title);
$template->set_filenames(array(
'body' => 'faq_body.html')
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php
index e043883145..ef2e009a6e 100644
--- a/phpBB/includes/functions_module.php
+++ b/phpBB/includes/functions_module.php
@@ -956,7 +956,7 @@ class p_master
/**
* Display module
*/
- function display($page_title, $display_online_list = true)
+ function display($page_title, $display_online_list = false)
{
global $template, $user;
diff --git a/phpBB/mcp.php b/phpBB/mcp.php
index 3fc89ba01b..1449346deb 100644
--- a/phpBB/mcp.php
+++ b/phpBB/mcp.php
@@ -284,7 +284,7 @@ $template->assign_vars(array(
));
// Generate the page, do not display/query online list
-$module->display($module->get_page_title(), false);
+$module->display($module->get_page_title());
/**
* Functions used to generate additional URL paramters
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index ba906bd410..8c773886a6 100644
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -353,7 +353,7 @@ $module->load_active();
$module->assign_tpl_vars(append_sid("{$phpbb_root_path}ucp.$phpEx"));
// Generate the page, do not display/query online list
-$module->display($module->get_page_title(), false);
+$module->display($module->get_page_title());
/**
* Function for assigning a template var if the zebra module got included