From 525b9bd79961041e3e095fa98eb1e8e57eaa2a7b Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Sun, 14 Oct 2007 11:35:32 +0000 Subject: - Submitting language changes via acp_language should be possible again [Bug #14736] git-svn-id: file:///svn/phpbb/trunk@8177 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acp/acp_language.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'phpBB/includes/acp') diff --git a/phpBB/includes/acp/acp_language.php b/phpBB/includes/acp/acp_language.php index f68b3ea287..2af6d90284 100644 --- a/phpBB/includes/acp/acp_language.php +++ b/phpBB/includes/acp/acp_language.php @@ -42,11 +42,11 @@ class acp_language // Check and set some common vars $action = (isset($_POST['update_details'])) ? 'update_details' : ''; - $action = (isset($_POST['download_file'])) ? 'download_file' : ''; - $action = (isset($_POST['upload_file'])) ? 'upload_file' : ''; - $action = (isset($_POST['upload_data'])) ? 'upload_data' : ''; - $action = (isset($_POST['submit_file'])) ? 'submit_file' : ''; - $action = (isset($_POST['remove_store'])) ? 'details' : ''; + $action = (isset($_POST['download_file'])) ? 'download_file' : $action; + $action = (isset($_POST['upload_file'])) ? 'upload_file' : $action; + $action = (isset($_POST['upload_data'])) ? 'upload_data' : $action; + $action = (isset($_POST['submit_file'])) ? 'submit_file' : $action; + $action = (isset($_POST['remove_store'])) ? 'details' : $action; $submit = (empty($action)) ? false : true; $action = (empty($action)) ? request_var('action', '') : $action; -- cgit v1.2.1