aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-03-26 11:01:22 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-03-26 11:01:22 +0100
commit9eab4ba740a58b9d5eecec05c97373ed328e824e (patch)
tree30ddfdde45ce20d39f98b6e3eac9f77f1a632d63
parentb650f45d5597fd6a2864ddcd658df3603deb001f (diff)
downloadforums-9eab4ba740a58b9d5eecec05c97373ed328e824e.tar
forums-9eab4ba740a58b9d5eecec05c97373ed328e824e.tar.gz
forums-9eab4ba740a58b9d5eecec05c97373ed328e824e.tar.bz2
forums-9eab4ba740a58b9d5eecec05c97373ed328e824e.tar.xz
forums-9eab4ba740a58b9d5eecec05c97373ed328e824e.zip
[ticket/12368] Fix comment in docblock
PHPBB3-12368
-rw-r--r--phpBB/phpbb/db/migration/data/v310/avatars.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/avatars.php b/phpBB/phpbb/db/migration/data/v310/avatars.php
index 51e222532b..9b03a8fa94 100644
--- a/phpBB/phpbb/db/migration/data/v310/avatars.php
+++ b/phpBB/phpbb/db/migration/data/v310/avatars.php
@@ -33,7 +33,7 @@ class avatars extends \phpbb\db\migration\migration
$effectively_installed = $this->db->sql_query($sql);
$this->db->sql_return_on_error();
- // Return avatar type of guest user to previous state
+ // Restore avatar type of guest user to previous state
$sql = 'UPDATE ' . $this->table_prefix . "users
SET user_avatar_type = '{$backup_type}'
WHERE user_id = " . ANONYMOUS;