From: Vincent Zanotti Date: Sat, 4 Apr 2009 13:11:52 +0000 (+0200) Subject: Fixes a typo and a grammar mistake in comments added in the previous commit. X-Git-Tag: xorg/0.10.1~123 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=57fecfb11a07c8d046bf279b8d22384c10da4212;p=platal.git Fixes a typo and a grammar mistake in comments added in the previous commit. Signed-off-by: Vincent Zanotti --- diff --git a/modules/admin.php b/modules/admin.php index 9c84011..f9a8fe0 100644 --- a/modules/admin.php +++ b/modules/admin.php @@ -572,12 +572,12 @@ class AdminModule extends PLModule user_reindex($user->id()); $new_fields = XDB::query($watch_query, $user->id())->fetchOneAssoc(); - // Redacts the password in the notification, to avoiding transmitting + // Redacts the password in the notification, to avoid transmitting // sensitive information by email. $new_fields['password'] = ($old_fields['password'] != $new_fields['password'] ? 'new' : 'old'); $old_fields['password'] = 'old'; - // Emails the admins to notify the profile update. + // Notifies the admins of the profile update. $mailer = new PlMailer("admin/useredit.mail.tpl"); $mailer->assign("admin", S::user()->login()); $mailer->assign("user", $user->login());