diff options
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 5 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_ban.php | 5 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_bots.php | 6 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_disallow.php | 4 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_email.php | 11 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_groups.php | 10 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_inactive.php | 15 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_jabber.php | 5 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_language.php | 5 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_permission_roles.php | 11 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_permissions.php | 11 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_profile.php | 11 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_prune.php | 6 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_send_statistics.php | 5 | ||||
| -rw-r--r-- | phpBB/includes/acp/acp_users.php | 58 | 
15 files changed, 132 insertions, 36 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index 67fba1094d..4956aab241 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -106,7 +106,10 @@ class acp_attachments  		{  			case 'attach': -				include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx); +				if (!function_exists('get_supported_image_types')) +				{ +					include($phpbb_root_path . 'includes/functions_posting.' . $phpEx); +				}  				$sql = 'SELECT group_name, cat_id  					FROM ' . EXTENSION_GROUPS_TABLE . ' diff --git a/phpBB/includes/acp/acp_ban.php b/phpBB/includes/acp/acp_ban.php index b555f46a94..286bc92813 100644 --- a/phpBB/includes/acp/acp_ban.php +++ b/phpBB/includes/acp/acp_ban.php @@ -28,7 +28,10 @@ class acp_ban  		global $user, $template, $request, $phpbb_dispatcher;  		global $phpbb_root_path, $phpEx; -		include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		if (!function_exists('user_ban')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		}  		$bansubmit	= $request->is_set_post('bansubmit');  		$unbansubmit = $request->is_set_post('unbansubmit'); diff --git a/phpBB/includes/acp/acp_bots.php b/phpBB/includes/acp/acp_bots.php index 1ea320e674..2188b90729 100644 --- a/phpBB/includes/acp/acp_bots.php +++ b/phpBB/includes/acp/acp_bots.php @@ -141,7 +141,11 @@ class acp_bots  			case 'edit':  			case 'add': -				include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); + +				if (!function_exists('user_update_name')) +				{ +					include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				}  				$bot_row = array(  					'bot_name'		=> utf8_normalize_nfc(request_var('bot_name', '', true)), diff --git a/phpBB/includes/acp/acp_disallow.php b/phpBB/includes/acp/acp_disallow.php index 4c8f3cc65b..5b12013708 100644 --- a/phpBB/includes/acp/acp_disallow.php +++ b/phpBB/includes/acp/acp_disallow.php @@ -26,9 +26,7 @@ class acp_disallow  	function main($id, $mode)  	{  		global $db, $user, $auth, $template, $cache; -		global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; - -		include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		global $config, $phpbb_admin_path;  		$user->add_lang('acp/posting'); diff --git a/phpBB/includes/acp/acp_email.php b/phpBB/includes/acp/acp_email.php index fda9d50779..917d02318e 100644 --- a/phpBB/includes/acp/acp_email.php +++ b/phpBB/includes/acp/acp_email.php @@ -189,8 +189,15 @@ class acp_email  				$db->sql_freeresult($result);  				// Send the messages -				include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); -				include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				if (!class_exists('messenger')) +				{ +					include($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +				} + +				if (!function_exists('get_group_name')) +				{ +					include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				}  				$messenger = new messenger($use_queue);  				$errored = false; diff --git a/phpBB/includes/acp/acp_groups.php b/phpBB/includes/acp/acp_groups.php index edfada1bf1..befbcdf24a 100644 --- a/phpBB/includes/acp/acp_groups.php +++ b/phpBB/includes/acp/acp_groups.php @@ -42,7 +42,10 @@ class acp_groups  			return;  		} -		include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		if (!function_exists('group_user_attributes')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		}  		// Check and set some common vars  		$action		= (isset($_POST['add'])) ? 'add' : ((isset($_POST['addusers'])) ? 'addusers' : request_var('action', '')); @@ -295,7 +298,10 @@ class acp_groups  			case 'edit':  			case 'add': -				include($phpbb_root_path . 'includes/functions_display.' . $phpEx); +				if (!function_exists('display_forums')) +				{ +					include($phpbb_root_path . 'includes/functions_display.' . $phpEx); +				}  				$data = $submit_ary = array(); diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php index 5178fc8006..76c7a1b277 100644 --- a/phpBB/includes/acp/acp_inactive.php +++ b/phpBB/includes/acp/acp_inactive.php @@ -34,7 +34,10 @@ class acp_inactive  		global $config, $db, $user, $auth, $template, $phpbb_container;  		global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix; -		include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		if (!function_exists('user_active_flip')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		}  		$user->add_lang('memberlist'); @@ -109,7 +112,10 @@ class acp_inactive  						if ($config['require_activation'] == USER_ACTIVATION_ADMIN && !empty($inactive_users))  						{ -							include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +							if (!class_exists('messenger')) +							{ +								include($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +							}  							$messenger = new messenger(false); @@ -196,7 +202,10 @@ class acp_inactive  					if ($row = $db->sql_fetchrow($result))  					{  						// Send the messages -						include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +						if (!class_exists('messenger')) +						{ +							include($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +						}  						$messenger = new messenger();  						$usernames = $user_ids = array(); diff --git a/phpBB/includes/acp/acp_jabber.php b/phpBB/includes/acp/acp_jabber.php index 284543acd3..a482b41e1d 100644 --- a/phpBB/includes/acp/acp_jabber.php +++ b/phpBB/includes/acp/acp_jabber.php @@ -34,7 +34,10 @@ class acp_jabber  		$user->add_lang('acp/board'); -		include_once($phpbb_root_path . 'includes/functions_jabber.' . $phpEx); +		if (!class_exists('jabber')) +		{ +			include($phpbb_root_path . 'includes/functions_jabber.' . $phpEx); +		}  		$action	= request_var('action', '');  		$submit = (isset($_POST['submit'])) ? true : false; diff --git a/phpBB/includes/acp/acp_language.php b/phpBB/includes/acp/acp_language.php index 60e338ae7c..3888a411f0 100644 --- a/phpBB/includes/acp/acp_language.php +++ b/phpBB/includes/acp/acp_language.php @@ -34,7 +34,10 @@ class acp_language  		global $config, $db, $user, $template;  		global $phpbb_root_path, $phpEx, $request; -		include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		if (!function_exists('validate_language_iso_name')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		}  		// Check and set some common vars  		$action		= (isset($_POST['update_details'])) ? 'update_details' : ''; diff --git a/phpBB/includes/acp/acp_permission_roles.php b/phpBB/includes/acp/acp_permission_roles.php index cd3616208d..be4ab4676a 100644 --- a/phpBB/includes/acp/acp_permission_roles.php +++ b/phpBB/includes/acp/acp_permission_roles.php @@ -30,8 +30,15 @@ class acp_permission_roles  		global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx;  		global $request; -		include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); -		include_once($phpbb_root_path . 'includes/acp/auth.' . $phpEx); +		if (!function_exists('user_get_id_name')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		} + +		if (!class_exists('auth_admin')) +		{ +			include($phpbb_root_path . 'includes/acp/auth.' . $phpEx); +		}  		$this->auth_admin = new auth_admin(); diff --git a/phpBB/includes/acp/acp_permissions.php b/phpBB/includes/acp/acp_permissions.php index cb408e304f..660afb4e93 100644 --- a/phpBB/includes/acp/acp_permissions.php +++ b/phpBB/includes/acp/acp_permissions.php @@ -30,8 +30,15 @@ class acp_permissions  		global $db, $user, $auth, $template, $cache, $phpbb_container;  		global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; -		include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); -		include_once($phpbb_root_path . 'includes/acp/auth.' . $phpEx); +		if (!function_exists('user_get_id_name')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		} + +		if (!class_exists('auth_admin')) +		{ +			include($phpbb_root_path . 'includes/acp/auth.' . $phpEx); +		}  		$this->permissions = $phpbb_container->get('acl.permissions'); diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php index abf84e84aa..8c7691538c 100644 --- a/phpBB/includes/acp/acp_profile.php +++ b/phpBB/includes/acp/acp_profile.php @@ -33,8 +33,15 @@ class acp_profile  		global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix;  		global $request, $phpbb_container, $phpbb_dispatcher; -		include($phpbb_root_path . 'includes/functions_posting.' . $phpEx); -		include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		if (!function_exists('generate_smilies')) +		{ +			include($phpbb_root_path . 'includes/functions_posting.' . $phpEx); +		} + +		if (!function_exists('user_get_id_name')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		}  		$user->add_lang(array('ucp', 'acp/profile'));  		$this->tpl_name = 'acp_profile'; diff --git a/phpBB/includes/acp/acp_prune.php b/phpBB/includes/acp/acp_prune.php index e17399e3d9..98d9caabdd 100644 --- a/phpBB/includes/acp/acp_prune.php +++ b/phpBB/includes/acp/acp_prune.php @@ -28,7 +28,11 @@ class acp_prune  		global $user, $phpEx, $phpbb_admin_path, $phpbb_root_path;  		$user->add_lang('acp/prune'); -		include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); + +		if (!function_exists('user_active_flip')) +		{ +			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +		}  		switch ($mode)  		{ diff --git a/phpBB/includes/acp/acp_send_statistics.php b/phpBB/includes/acp/acp_send_statistics.php index d178be2fb0..7c9e9cf78e 100644 --- a/phpBB/includes/acp/acp_send_statistics.php +++ b/phpBB/includes/acp/acp_send_statistics.php @@ -27,7 +27,10 @@ class acp_send_statistics  	{  		global $config, $template, $phpbb_admin_path, $phpbb_root_path, $phpEx; -		include($phpbb_root_path . 'includes/questionnaire/questionnaire.' . $phpEx); +		if (!class_exists('phpbb_questionnaire_data_collector')) +		{ +			include($phpbb_root_path . 'includes/questionnaire/questionnaire.' . $phpEx); +		}  		$collect_url = "https://www.phpbb.com/stats/receive_stats.php"; diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index 644beda77b..4d0bbf5721 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -57,7 +57,10 @@ class acp_users  		// Whois (special case)  		if ($action == 'whois')  		{ -			include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +			if (!function_exists('user_get_id_name')) +			{ +				include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +			}  			$this->page_title = 'WHOIS';  			$this->tpl_name = 'simple_body'; @@ -170,7 +173,10 @@ class acp_users  		{  			case 'overview': -				include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				if (!function_exists('user_get_id_name')) +				{ +					include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				}  				$user->add_lang('acp/ban'); @@ -354,7 +360,10 @@ class acp_users  							if ($config['email_enable'])  							{ -								include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +								if (!class_exists('messenger')) +								{ +									include($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +								}  								$server_url = generate_board_url(); @@ -437,7 +446,10 @@ class acp_users  									$phpbb_notifications = $phpbb_container->get('notification_manager');  									$phpbb_notifications->delete_notifications('notification.type.admin_activate_user', $user_row['user_id']); -									include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +									if (!class_exists('messenger')) +									{ +										include($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); +									}  									$messenger = new messenger(false); @@ -1361,7 +1373,10 @@ class acp_users  			case 'profile': -				include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				if (!function_exists('user_get_id_name')) +				{ +					include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				}  				$cp = $phpbb_container->get('profilefields.manager'); @@ -1520,7 +1535,10 @@ class acp_users  			case 'prefs': -				include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				if (!function_exists('user_get_id_name')) +				{ +					include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				}  				$data = array(  					'dateformat'		=> utf8_normalize_nfc(request_var('dateformat', $user_row['user_dateformat'], true)), @@ -1790,8 +1808,6 @@ class acp_users  			case 'avatar': -				include($phpbb_root_path . 'includes/functions_display.' . $phpEx); -  				$avatars_enabled = false;  				if ($config['allow_avatar']) @@ -1946,8 +1962,15 @@ class acp_users  			case 'sig': -				include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx); -				include_once($phpbb_root_path . 'includes/functions_display.' . $phpEx); +				if (!function_exists('generate_smilies')) +				{ +					include($phpbb_root_path . 'includes/functions_posting.' . $phpEx); +				} + +				if (!function_exists('display_custom_bbcodes')) +				{ +					include($phpbb_root_path . 'includes/functions_display.' . $phpEx); +				}  				$enable_bbcode	= ($config['allow_sig_bbcode']) ? (bool) $this->optionget($user_row, 'sig_bbcode') : false;  				$enable_smilies	= ($config['allow_sig_smilies']) ? (bool) $this->optionget($user_row, 'sig_smilies') : false; @@ -1958,7 +1981,10 @@ class acp_users  				if ($submit || $preview)  				{ -					include_once($phpbb_root_path . 'includes/message_parser.' . $phpEx); +					if (!class_exists('messenger')) +					{ +						include($phpbb_root_path . 'includes/message_parser.' . $phpEx); +					}  					$enable_bbcode	= ($config['allow_sig_bbcode']) ? ((request_var('disable_bbcode', false)) ? false : true) : false;  					$enable_smilies	= ($config['allow_sig_smilies']) ? ((request_var('disable_smilies', false)) ? false : true) : false; @@ -2199,7 +2225,10 @@ class acp_users  			case 'groups': -				include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				if (!function_exists('group_user_attributes')) +				{ +					include($phpbb_root_path . 'includes/functions_user.' . $phpEx); +				}  				$user->add_lang(array('groups', 'acp/groups'));  				$group_id = request_var('g', 0); @@ -2415,7 +2444,10 @@ class acp_users  			case 'perm': -				include_once($phpbb_root_path . 'includes/acp/auth.' . $phpEx); +				if (!class_exists('auth_admin')) +				{ +					include($phpbb_root_path . 'includes/acp/auth.' . $phpEx); +				}  				$auth_admin = new auth_admin();  | 
