diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-12-03 21:15:32 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-12-03 21:15:32 +0100 |
commit | c179167850b6c44679deb9edd4a816243addb52d (patch) | |
tree | a78851d26a4a9eb0db24b96b1f3a7289f8a3724e /inc/common.php | |
parent | 1b2abcf93c01d372fac2868ee6930c2326b7c914 (diff) | |
download | rpg-c179167850b6c44679deb9edd4a816243addb52d.tar.gz rpg-c179167850b6c44679deb9edd4a816243addb52d.tar.bz2 |
getUserData should really be implemented always... (FS#1272)
... but with this patch DokuWiki will not break completely when left out for
trustExternal() auth backends
darcs-hash:20071203201532-7ad00-72dbc2d16e4c8c09cca9558286164f4d858c19ce.gz
Diffstat (limited to 'inc/common.php')
-rw-r--r-- | inc/common.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/common.php b/inc/common.php index 96980e7ee..ec500d906 100644 --- a/inc/common.php +++ b/inc/common.php @@ -1061,6 +1061,7 @@ function subscriber_addresslist($id){ foreach ($mlist as $who) { $who = rtrim($who); $info = $auth->getUserData($who); + if($info === false) continue; $level = auth_aclcheck($id,$who,$info['grps']); if ($level >= AUTH_READ) { if (strcasecmp($info['mail'],$conf['notify']) != 0) { |