X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Frss.inc.php;h=e45a822acebc2345fdc5d5ed23222af34b975aeb;hb=33b6f5a0072343de978e05f855739322b94179e5;hp=9d38d3150c6cfd2053219269f245db7c74da6586;hpb=a8b4ccb6c163277c49fb92427a7bb4ace8469660;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index 9d38d31..e45a822 100644 --- a/include/rss.inc.php +++ b/include/rss.inc.php @@ -23,12 +23,12 @@ function init_rss($template, $alias, $hash, $require_uid = true) { $page =& Platal::page(); $page->changeTpl($template, NO_SKIN); - $uid = Platal::session()->tokenAuth($alias, $hash); - if (empty($uid)) { + $user = Platal::session()->tokenAuth($alias, $hash); + if (is_null($user)) { if ($require_uid) { exit; } else { - $uid = null; + $user = null; } } @@ -36,7 +36,7 @@ function init_rss($template, $alias, $hash, $require_uid = true) $page->assign('rss_hash', $hash); header('Content-Type: application/rss+xml; charset=utf8'); } - return $uid; + return is_null($user) ? null : $user->id(); } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: