mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/13904] Remove functions_fileupload.php
PHPBB3-13904
This commit is contained in:
parent
c34fd1e7c0
commit
25df7f8149
3 changed files with 0 additions and 33 deletions
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -13,7 +13,6 @@
|
||||||
|
|
||||||
require_once __DIR__ . '/../../phpBB/includes/functions.php';
|
require_once __DIR__ . '/../../phpBB/includes/functions.php';
|
||||||
require_once __DIR__ . '/../../phpBB/includes/utf/utf_tools.php';
|
require_once __DIR__ . '/../../phpBB/includes/utf/utf_tools.php';
|
||||||
require_once __DIR__ . '/../../phpBB/includes/functions_upload.php';
|
|
||||||
|
|
||||||
class phpbb_filespec_test extends phpbb_test_case
|
class phpbb_filespec_test extends phpbb_test_case
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
|
|
||||||
require_once __DIR__ . '/../../phpBB/includes/functions.php';
|
require_once __DIR__ . '/../../phpBB/includes/functions.php';
|
||||||
require_once __DIR__ . '/../../phpBB/includes/utf/utf_tools.php';
|
require_once __DIR__ . '/../../phpBB/includes/utf/utf_tools.php';
|
||||||
require_once __DIR__ . '/../../phpBB/includes/functions_upload.php';
|
|
||||||
require_once __DIR__ . '/../mock/filespec.php';
|
require_once __DIR__ . '/../mock/filespec.php';
|
||||||
|
|
||||||
class phpbb_fileupload_test extends phpbb_test_case
|
class phpbb_fileupload_test extends phpbb_test_case
|
||||||
|
|
Loading…
Add table
Reference in a new issue