remove fail() that is not used
[platal.git] / include / rss.inc.php
index 10fb3ed..5bfcffa 100644 (file)
@@ -39,12 +39,12 @@ function to_rss ($s)
 
 function init_rss($template, $alias, $hash)
 {
-    global $page, $globals;
-    new_nonhtml_page($template, AUTH_PUBLIC);
+    global $page;
+    $page->changeTpl($template, NO_SKIN);
     $page->register_modifier('rss_date', '_rss_encode_date');
     $page->default_modifiers = Array('@to_rss');
 
-    $res = $globals->xdb->query(
+    $res = XDB::query(
         'SELECT  a.id
            FROM  aliases         AS a
      INNER JOIN  auth_user_quick AS q ON ( a.id = q.user_id AND q.core_rss_hash = {?} )