aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-08-14 14:14:44 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-08-14 14:14:44 +0000
commit605639166f650013d1b48f99ca812a6f690de4c7 (patch)
tree646def2fb5b3fe89004b9939a60216ef71e71f4f
parentf4557ed74c1ad5d268d450dd187d0b61a6952f60 (diff)
downloadforums-605639166f650013d1b48f99ca812a6f690de4c7.tar
forums-605639166f650013d1b48f99ca812a6f690de4c7.tar.gz
forums-605639166f650013d1b48f99ca812a6f690de4c7.tar.bz2
forums-605639166f650013d1b48f99ca812a6f690de4c7.tar.xz
forums-605639166f650013d1b48f99ca812a6f690de4c7.zip
add missing space
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9981 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 7377cda8ea..f53dc2bb75 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -39,7 +39,7 @@ $load = (isset($_POST['load'])) ? true : false;
$delete = (isset($_POST['delete'])) ? true : false;
$cancel = (isset($_POST['cancel']) && !isset($_POST['save'])) ? true : false;
-$refresh = (isset($_POST['add_file']) || isset($_POST['delete_file']) || isset($_POST['full_editor']) ||isset($_POST['cancel_unglobalise']) || $save || $load) ? true : false;
+$refresh = (isset($_POST['add_file']) || isset($_POST['delete_file']) || isset($_POST['full_editor']) || isset($_POST['cancel_unglobalise']) || $save || $load) ? true : false;
$mode = ($delete && !$preview && !$refresh && $submit) ? 'delete' : request_var('mode', '');
$error = $post_data = array();