Fixes a typo and a grammar mistake in comments added in the previous commit.
authorVincent Zanotti <vincent.zanotti@m4x.org>
Sat, 4 Apr 2009 13:11:52 +0000 (15:11 +0200)
committerVincent Zanotti <vincent.zanotti@m4x.org>
Sat, 4 Apr 2009 13:11:52 +0000 (15:11 +0200)
Signed-off-by: Vincent Zanotti <vincent.zanotti@m4x.org>
modules/admin.php

index 9c84011..f9a8fe0 100644 (file)
@@ -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());