diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-06-21 18:58:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-06-21 18:58:27 +0000 |
commit | f3a9a99570b1e9d7a929ee4a2f6495b6b26335d2 (patch) | |
tree | e5f5b5e2ad104374feba6084cf44e73598d5f219 /modules/user/user.module | |
parent | 22ea50dfeca9e91dadb074f4b3dbb4656c97e978 (diff) | |
download | brdo-f3a9a99570b1e9d7a929ee4a2f6495b6b26335d2.tar.gz brdo-f3a9a99570b1e9d7a929ee4a2f6495b6b26335d2.tar.bz2 |
- Patch #25121 by Robrecht J.: changed itemized lists with hardcoded CSS to definition lists.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 33678c6d3..34b605c59 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -319,7 +319,7 @@ function user_access($string, $account = NULL) { } // User #1 has all privileges: - if ($account->uid === 1) { + if ($account->uid == 1) { return TRUE; } |