From 0ff80fead88fb62dea6f51eba88e9cc4c16d5f9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Wed, 9 Aug 2017 12:39:15 +0200 Subject: [PATCH] [ticket/15276] Remove avatar_path from acp PHPBB3-15276 --- phpBB/cache/.htaccess | 4 ---- phpBB/cache/index.htm | 10 ---------- phpBB/phpbb/avatar/driver/upload.php | 1 - 3 files changed, 15 deletions(-) delete mode 100644 phpBB/cache/.htaccess delete mode 100644 phpBB/cache/index.htm diff --git a/phpBB/cache/.htaccess b/phpBB/cache/.htaccess deleted file mode 100644 index aa5afc1640..0000000000 --- a/phpBB/cache/.htaccess +++ /dev/null @@ -1,4 +0,0 @@ - - Order Allow,Deny - Deny from All - \ No newline at end of file diff --git a/phpBB/cache/index.htm b/phpBB/cache/index.htm deleted file mode 100644 index ee1f723a7d..0000000000 --- a/phpBB/cache/index.htm +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/phpBB/phpbb/avatar/driver/upload.php b/phpBB/phpbb/avatar/driver/upload.php index 753daf2d05..5e5a6db228 100644 --- a/phpBB/phpbb/avatar/driver/upload.php +++ b/phpBB/phpbb/avatar/driver/upload.php @@ -242,7 +242,6 @@ class upload extends \phpbb\avatar\driver\driver return array( 'allow_avatar_remote_upload'=> array('lang' => 'ALLOW_REMOTE_UPLOAD', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), 'avatar_filesize' => array('lang' => 'MAX_FILESIZE', 'validate' => 'int:0', 'type' => 'number:0', 'explain' => true, 'append' => ' ' . $user->lang['BYTES']), - 'avatar_path' => array('lang' => 'AVATAR_STORAGE_PATH', 'validate' => 'rpath', 'type' => 'text:20:255', 'explain' => true), ); }