1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 15:45:34 +02:00

[ticket/14039] Fix language constants and comments

PHPBB3-14039
This commit is contained in:
Mate Bartus 2015-10-18 11:21:56 +02:00
parent 8f5a0ad6f7
commit 85eb6a0bc0
3 changed files with 3 additions and 3 deletions

View File

@ -334,7 +334,7 @@ $lang = array_merge($lang, array(
'UPDATE_FILE_METHOD' => 'File updater method', 'UPDATE_FILE_METHOD' => 'File updater method',
'UPDATE_FILE_METHOD_DOWNLOAD' => 'Download modified files in an archive', 'UPDATE_FILE_METHOD_DOWNLOAD' => 'Download modified files in an archive',
'UPDATE_FILE_METHOD_FTP' => 'Update files via FTP (Automatic)', 'UPDATE_FILE_METHOD_FTP' => 'Update files via FTP (Automatic)',
'UPDATE_FILE_METHOD_FILESYSTEM' => 'Update files via file commands (Automatic)', 'UPDATE_FILE_METHOD_FILESYSTEM' => 'Update files via direct file access (Automatic)',
// File updater archives // File updater archives
'SELECT_DOWNLOAD_FORMAT' => 'Select download archive format', 'SELECT_DOWNLOAD_FORMAT' => 'Select download archive format',

View File

@ -38,7 +38,7 @@ class archive_download
/** /**
* Sends response with the merge conflict archive * Sends response with the merge conflict archive
* *
* Merge conflicts are always have to be resolved manually, * Merge conflicts always have to be resolved manually,
* so we use a different archive for that. * so we use a different archive for that.
* *
* @return BinaryFileResponse * @return BinaryFileResponse

View File

@ -262,7 +262,7 @@ class config
* *
* @param string $name Name of the restart point * @param string $name Name of the restart point
* *
* @return bool Returns false if the restart point name is not exist, true otherwise * @return bool Returns false if the restart point name does not exist, otherwise true
*/ */
public function jump_to_restart_point($name) public function jump_to_restart_point($name)
{ {