diff options
author | Andreas Gohr <gohr@cosmocode.de> | 2009-11-24 12:58:05 +0100 |
---|---|---|
committer | Adrian Lang <lang@cosmocode.de> | 2010-01-20 10:53:23 +0100 |
commit | 2f27189ab6f07352f435e91bab0c28dfc4899583 (patch) | |
tree | 3b9dfc1d90abf41e2263611e9c47d23b1a3046b0 /lib | |
parent | 3a5a6f4fe4a9f768f5c6418ba0694d67594ed701 (diff) | |
download | rpg-2f27189ab6f07352f435e91bab0c28dfc4899583.tar.gz rpg-2f27189ab6f07352f435e91bab0c28dfc4899583.tar.bz2 |
wrong function name fixed
Ignore-this: b74163181c2e41d3be022a6185f3e1c1
darcs-hash:20091124115805-6e07b-e808cf44a00a65ff8c70cc7e8de4dfedadf96cbd.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exe/indexer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/indexer.php b/lib/exe/indexer.php index 1766c54f1..53f2c129d 100644 --- a/lib/exe/indexer.php +++ b/lib/exe/indexer.php @@ -392,7 +392,7 @@ function sendDigest() { } // TODO: Handle duplicate subscriptions. } else { - if(auth_quickacl($id) < AUTH_READ) continue; + if(auth_quickaclcheck($id) < AUTH_READ) continue; $meta = p_get_metadata($id); $rev = $meta['last_change']['date']; |