diff options
author | David King <imkingdavid@gmail.com> | 2012-03-30 21:43:00 -0400 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-03-30 21:43:00 -0400 |
commit | a7045e65724481002e232a7d143b7cc2ed6acb3a (patch) | |
tree | ad969341161bfd2fef644f325a9cafa17d9e4f41 /phpBB/posting.php | |
parent | 013a8649a5164b90310e76d99fae2186b831a5f0 (diff) | |
download | forums-a7045e65724481002e232a7d143b7cc2ed6acb3a.tar forums-a7045e65724481002e232a7d143b7cc2ed6acb3a.tar.gz forums-a7045e65724481002e232a7d143b7cc2ed6acb3a.tar.bz2 forums-a7045e65724481002e232a7d143b7cc2ed6acb3a.tar.xz forums-a7045e65724481002e232a7d143b7cc2ed6acb3a.zip |
[feature/qrpreview] Preview from Quick Reply
PHPBB3-10726
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 56fb7832f2..71ba353e89 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -38,7 +38,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['cancel_unglobalise']) || $save || $load) ? true : false; $mode = ($delete && !$preview && !$refresh && $submit) ? 'delete' : request_var('mode', ''); $error = $post_data = array(); |