1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-09 02:12:44 +02:00

[ticket/15276] Remove avatar_path from acp

PHPBB3-15276
This commit is contained in:
Rubén Calvo 2017-08-09 12:39:15 +02:00
parent 090ed9bf79
commit 0ff80fead8
3 changed files with 0 additions and 15 deletions

View File

@ -1,4 +0,0 @@
<Files *>
Order Allow,Deny
Deny from All
</Files>

10
phpBB/cache/index.htm vendored
View File

@ -1,10 +0,0 @@
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>

View File

@ -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),
);
}