diff options
Diffstat (limited to 'phpBB/includes/acp/acp_language.php')
| -rw-r--r-- | phpBB/includes/acp/acp_language.php | 5 | 
1 files changed, 4 insertions, 1 deletions
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' : '';  | 
