diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-06-07 16:28:03 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-06-07 16:28:03 +0200 |
commit | 9a02dc3e27c955d45a9361b5d49ec860a9c240c9 (patch) | |
tree | 2aa43bef97b08c324b785f1eeca05e7875b00305 | |
parent | fc4275ab2b414e184007a8791c7ee09537d5a827 (diff) | |
download | forums-9a02dc3e27c955d45a9361b5d49ec860a9c240c9.tar forums-9a02dc3e27c955d45a9361b5d49ec860a9c240c9.tar.gz forums-9a02dc3e27c955d45a9361b5d49ec860a9c240c9.tar.bz2 forums-9a02dc3e27c955d45a9361b5d49ec860a9c240c9.tar.xz forums-9a02dc3e27c955d45a9361b5d49ec860a9c240c9.zip |
[ticket/11331] Inform user that double dots will be stripped from avatar paths
PHPBB3-11331
-rw-r--r-- | phpBB/language/en/acp/board.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php index 5e4961c435..7dd83e83db 100644 --- a/phpBB/language/en/acp/board.php +++ b/phpBB/language/en/acp/board.php @@ -111,9 +111,9 @@ $lang = array_merge($lang, array( 'ALLOW_REMOTE_UPLOAD_EXPLAIN' => 'Allow uploading of avatars from another website.', 'ALLOW_UPLOAD' => 'Enable avatar uploading', '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_GALLERY_PATH_EXPLAIN' => 'Path under your phpBB root directory for pre-loaded images, e.g. <samp>images/avatars/gallery</samp>.<br />Double dots like <samp>../</samp> will be stripped from the path for security reasons.', 'AVATAR_STORAGE_PATH' => 'Avatar storage path', - '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.', + '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.<br />Double dots like <samp>../</samp> will be stripped from the path for security reasons.', 'MAX_AVATAR_SIZE' => 'Maximum avatar dimensions', 'MAX_AVATAR_SIZE_EXPLAIN' => 'Width x Height in pixels.', 'MAX_FILESIZE' => 'Maximum avatar file size', |