Skip to content
Snippets Groups Projects
Commit c0f9af6d authored by Nathan Neulinger's avatar Nathan Neulinger
Browse files

fix for feed.php and new auth mechanism

darcs-hash:20060131222019-effc9-784af6d641de5bfb57a15897fd657a94714629ce.gz
parent 2b240359
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,8 @@
*/
function rssRecentChanges(&$rss,$num,$ltype,$ns,$minor){
global $conf;
global $auth;
if(!$num) $num = $conf['recent'];
$guardmail = ($conf['mailguard'] != '' && $conf['mailguard'] != 'none');
......@@ -148,7 +150,7 @@ function rssRecentChanges(&$rss,$num,$ltype,$ns,$minor){
$item->author = '';
if($user){
$userInfo = auth_getUserData($user);
$userInfo = $auth->getUserData($user);
$item->author = $userInfo['name'];
if($guardmail) {
//cannot obfuscate because some RSS readers may check validity
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment