diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-09-21 11:01:01 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-09 10:15:39 +0200 |
commit | e158db5daa8b9eedfea9d17b5d678320ac7f8f61 (patch) | |
tree | 251c6e7e3c9d6b59acd9ab4ee018dbed3a9dbfc2 /phpBB | |
parent | 40117c77304468120245ae05b6b99f1d2a68c9f6 (diff) | |
download | forums-e158db5daa8b9eedfea9d17b5d678320ac7f8f61.tar forums-e158db5daa8b9eedfea9d17b5d678320ac7f8f61.tar.gz forums-e158db5daa8b9eedfea9d17b5d678320ac7f8f61.tar.bz2 forums-e158db5daa8b9eedfea9d17b5d678320ac7f8f61.tar.xz forums-e158db5daa8b9eedfea9d17b5d678320ac7f8f61.zip |
[ticket/14168] Minor coding style fixes
PHPBB3-14168
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/message_parser.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/attachment/delete.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/attachment/resync.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php index e0a0d69fba..a56ef0d4a9 100644 --- a/phpBB/includes/message_parser.php +++ b/phpBB/includes/message_parser.php @@ -1691,7 +1691,7 @@ class parse_message extends bbcode_firstpass { /** @var \phpbb\attachment\upload $attachment_upload */ $attachment_upload = $phpbb_container->get('attachment.upload'); - $filedata = $attachment_upload->upload($form_name, $forum_id, false, '', $is_message);; + $filedata = $attachment_upload->upload($form_name, $forum_id, false, '', $is_message); $error = array_merge($error, $filedata['error']); if (!sizeof($error)) diff --git a/phpBB/phpbb/attachment/delete.php b/phpBB/phpbb/attachment/delete.php index 4ef320eab4..32469c124c 100644 --- a/phpBB/phpbb/attachment/delete.php +++ b/phpBB/phpbb/attachment/delete.php @@ -376,4 +376,4 @@ class delete $this->config->increment('num_files', $files_removed * (-1), false); } } -}
\ No newline at end of file +} diff --git a/phpBB/phpbb/attachment/resync.php b/phpBB/phpbb/attachment/resync.php index c247fcce7a..9abf961c6b 100644 --- a/phpBB/phpbb/attachment/resync.php +++ b/phpBB/phpbb/attachment/resync.php @@ -120,4 +120,4 @@ class resync } } -}
\ No newline at end of file +} |