summaryrefslogtreecommitdiff
path: root/modules/user.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-10-19 18:02:31 +0000
committerDries Buytaert <dries@buytaert.net>2004-10-19 18:02:31 +0000
commit10f329c0579c24a23f9345a21aa00e56f6755a40 (patch)
tree70420d6c4543136ccd6b37479522458b9776d9f2 /modules/user.module
parentb2f8787c90ae7dae020337aaaa2987dcd78a7b9b (diff)
downloadbrdo-10f329c0579c24a23f9345a21aa00e56f6755a40.tar.gz
brdo-10f329c0579c24a23f9345a21aa00e56f6755a40.tar.bz2
- Patch #11728 by Uwe Hermann: fixed some typos in the code comments, Doxygen documentation and screen output.
Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
Diffstat (limited to 'modules/user.module')
-rw-r--r--modules/user.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module
index 50185acdb..b7abead15 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -307,7 +307,7 @@ function user_access($string, $account = NULL) {
global $user;
static $perm = array();
- // User #1 has all priveleges:
+ // User #1 has all privileges:
if ($user->uid == 1) {
return 1;
}
@@ -340,7 +340,7 @@ function user_mail($mail, $subject, $message, $header) {
else {
/*
** Note: if you are having problems with sending mail, or mails look wrong
- ** when they are recieved you may have to modify the str_replace to suit
+ ** when they are received you may have to modify the str_replace to suit
** your systems.
** - \r\n will work under dos and windows.
** - \n will work for linux, unix and BSDs.