aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-07-28 16:53:20 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-08-01 10:18:53 +0200
commitc903b1512c9926dfbc54e4e48233904385c137c6 (patch)
tree3ab122617a4fa2c40247d2ec3464fac9961d090b /phpBB/includes/functions_user.php
parent0ebe1f876452edbf2daeaf1e11bfe0b776fdc8af (diff)
downloadforums-c903b1512c9926dfbc54e4e48233904385c137c6.tar
forums-c903b1512c9926dfbc54e4e48233904385c137c6.tar.gz
forums-c903b1512c9926dfbc54e4e48233904385c137c6.tar.bz2
forums-c903b1512c9926dfbc54e4e48233904385c137c6.tar.xz
forums-c903b1512c9926dfbc54e4e48233904385c137c6.zip
[feature/php-events] Fix docs and naming of core.update_username
PHPBB3-9550
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index cf6a99c2b7..eef75b8430 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -137,8 +137,16 @@ function user_update_name($old_name, $new_name)
set_config('newest_username', $new_name, true);
}
+ /**
+ * Update username when it is changed
+ *
+ * @event core.update_username
+ * @var string old_name The old username that is replaced
+ * @var string new_name The new username
+ * @since 3.1-A1
+ */
$vars = array('old_name', 'new_name');
- extract($phpbb_dispatcher->trigger_event('core.user_update_name', compact($vars)));
+ extract($phpbb_dispatcher->trigger_event('core.update_username', compact($vars)));
// Because some tables/caches use username-specific data we need to purge this here.
$cache->destroy('sql', MODERATOR_CACHE_TABLE);