summaryrefslogtreecommitdiff
path: root/modules/user/user.api.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-09 23:03:22 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-09 23:03:22 +0000
commit71ee49de3eba0639d13a5861803f1cf031f376df (patch)
tree7e9a559099ad267e58e58879dae8246e1bf5cdf2 /modules/user/user.api.php
parenta895a366c56fc3a03303e5341e222b7ad097952b (diff)
downloadbrdo-71ee49de3eba0639d13a5861803f1cf031f376df.tar.gz
brdo-71ee49de3eba0639d13a5861803f1cf031f376df.tar.bz2
#679890 follow-up by Bojhan, aspilicious, and agentrickard: Remove more extraneous 'Please' in the interface.
Diffstat (limited to 'modules/user/user.api.php')
-rw-r--r--modules/user/user.api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.api.php b/modules/user/user.api.php
index 481002b41..e7e69c7ae 100644
--- a/modules/user/user.api.php
+++ b/modules/user/user.api.php
@@ -287,7 +287,7 @@ function hook_user_update(&$edit, $account, $category) {
function hook_user_login(&$edit, $account) {
// If the user has a NULL time zone, notify them to set a time zone.
if (!$user->timezone && variable_get('configurable_timezones', 1) && variable_get('empty_timezone_message', 0)) {
- drupal_set_message(t('Please configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$user->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
+ drupal_set_message(t('Configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$user->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
}
}