diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-06-02 12:24:31 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-09-09 08:27:47 +0200 |
commit | 25df7f814920a67b1d9b1e65e797c44960026585 (patch) | |
tree | 6a212e8790aeef7ebef3cccd1fdd7f543a38adf4 /phpBB/includes/functions_upload.php | |
parent | c34fd1e7c030860169bcbde9ac3c4f75d610cd60 (diff) | |
download | forums-25df7f814920a67b1d9b1e65e797c44960026585.tar forums-25df7f814920a67b1d9b1e65e797c44960026585.tar.gz forums-25df7f814920a67b1d9b1e65e797c44960026585.tar.bz2 forums-25df7f814920a67b1d9b1e65e797c44960026585.tar.xz forums-25df7f814920a67b1d9b1e65e797c44960026585.zip |
[ticket/13904] Remove functions_fileupload.php
PHPBB3-13904
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r-- | phpBB/includes/functions_upload.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php deleted file mode 100644 index 398771e92a..0000000000 --- a/phpBB/includes/functions_upload.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** -* -* This file is part of the phpBB Forum Software package. -* -* @copyright (c) phpBB Limited <https://www.phpbb.com> -* @license GNU General Public License, version 2 (GPL-2.0) -* -* For full copyright and license information, please see -* the docs/CREDITS.txt file. -* -*/ - -/** -* @ignore -*/ -if (!defined('IN_PHPBB')) -{ - exit; -} - -/** -* Class for assigning error messages before a real filespec class can be assigned -*/ -class fileerror extends \phpbb\files\filespec -{ - function fileerror($error_msg) - { - $this->error[] = $error_msg; - } -} |