diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-04-14 22:44:37 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-04-14 22:44:37 +0200 |
commit | c6fd2f01eb334a8a78bebc1cffd0f071fbe056ea (patch) | |
tree | e3e69bcf567a878b365dc897529e28b653e5cd4e /phpBB/language/en/acp/board.php | |
parent | e64c2326bdf36ac071f07881d4ca5aba202e6249 (diff) | |
download | forums-c6fd2f01eb334a8a78bebc1cffd0f071fbe056ea.tar forums-c6fd2f01eb334a8a78bebc1cffd0f071fbe056ea.tar.gz forums-c6fd2f01eb334a8a78bebc1cffd0f071fbe056ea.tar.bz2 forums-c6fd2f01eb334a8a78bebc1cffd0f071fbe056ea.tar.xz forums-c6fd2f01eb334a8a78bebc1cffd0f071fbe056ea.zip |
[ticket/8960] Allow changing avatar path if it's not writable
This change will allow users to change the avatar path even if it's not
writable. However, this will get rid of the error message that the path is
not writable. Due to this, a minor addition to the explain message in the ACP
settings has been made.
PHPBB3-8960
Diffstat (limited to 'phpBB/language/en/acp/board.php')
-rw-r--r-- | phpBB/language/en/acp/board.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php index f9a40c2bc7..e109ea6d3a 100644 --- a/phpBB/language/en/acp/board.php +++ b/phpBB/language/en/acp/board.php @@ -104,7 +104,7 @@ $lang = array_merge($lang, array( 'AVATAR_GALLERY_PATH' => 'Avatar gallery path', 'AVATAR_GALLERY_PATH_EXPLAIN' => 'Path under your phpBB root directory for pre-loaded images, e.g. <samp>images/avatars/gallery</samp>.', 'AVATAR_STORAGE_PATH' => 'Avatar storage path', - 'AVATAR_STORAGE_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>.', + 'AVATAR_STORAGE_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>.<br />Avatar uploading <strong>will not be available</strong> if this path is not writable.', 'MAX_AVATAR_SIZE' => 'Maximum avatar dimensions', 'MAX_AVATAR_SIZE_EXPLAIN' => 'Width x Height in pixels.', 'MAX_FILESIZE' => 'Maximum avatar file size', |