diff options
Diffstat (limited to 'phpBB/includes/acp/acp_database.php')
| -rw-r--r-- | phpBB/includes/acp/acp_database.php | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_database.php b/phpBB/includes/acp/acp_database.php index 9666ac5b6e..dd0599e06a 100644 --- a/phpBB/includes/acp/acp_database.php +++ b/phpBB/includes/acp/acp_database.php @@ -39,6 +39,9 @@ class acp_database  		$action	= request_var('action', '');  		$submit = (isset($_POST['submit'])) ? true : false; +		$form_key = 'acp_database'; +		add_form_key($form_key); +  		$template->assign_vars(array(  			'MODE'	=> $mode  		)); @@ -62,6 +65,11 @@ class acp_database  							trigger_error($user->lang['TABLE_SELECT_ERROR'] . adm_back_link($this->u_action), E_USER_WARNING);  						} +						if (!check_form_key($form_key)) +						{ +							trigger_error($user->lang['FORM_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING); +						} +  						$store = $download = $structure = $schema_data = false;  						if ($where == 'store_and_download' || $where == 'store')  | 
