X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-wernis_portal.php;h=b19dc24d2227ba89d41ed1fd4ad237a7c804331c;hp=5c82e8d187af1c96ea7ae85479e5111d14d7a22a;hb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5 diff --git a/inc/modules/guest/what-wernis_portal.php b/inc/modules/guest/what-wernis_portal.php index 5c82e8d187..b19dc24d22 100644 --- a/inc/modules/guest/what-wernis_portal.php +++ b/inc/modules/guest/what-wernis_portal.php @@ -1,7 +1,7 @@ "); -$rdf = new fase4_rdf; +if ((!isExtensionActive('wernis')) && (!isAdmin())) { + loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('wernis')); + return; +} // END - if + +outputHtml('
'); +$rdf = new fase4_rdf(); $rdf->use_dynamic_display(false); -$rdf->set_CacheDir(PATH."inc/cache/"); -$rdf->set_salt(SITE_KEY); +$rdf->set_CacheDir(getConfig('CACHE_PATH') . ''); +$rdf->set_salt(md5(getConfig('SITE_KEY'))); $rdf->set_max_item(10); $rdf->set_Options( array( - "textinput" => "hidden", - "sitelink" => "http://www.wds66.com", - "refid" => bigintval($_CONFIG['wernis_refid']), - "reflink" => "/ref.php?refid=", + 'textinput' => 'hidden', + 'sitelink' => 'http://www.wds66.com', + 'refid' => getConfig('wernis_refid'), + 'reflink' => '/ref.php?refid=', ) ); // Use proxy? -if ((!empty($_CONFIG['proxy_host'])) && (!empty($_CONFIG['proxy_port']))) { +if ((getConfig('proxy_host') != '') && (getConfig('proxy_port') > 0)) { // Set proxy data - $rdf->set_proxy($_CONFIG['proxy_host'], $_CONFIG['proxy_port']); + $rdf->set_proxy(getConfig('proxy_host'), getConfig('proxy_port')); // Use auth? - if (!empty($_CONFIG['proxy_username'])) { + if (getConfig('proxy_username') != '') { // Set auth data - $rdf->set_proxy_auth($_CONFIG['proxy_username'], $_CONFIG['proxy_password']); + $rdf->set_proxy_auth(getConfig('proxy_username'), getConfig('proxy_password')); } // END - if } // END - if -$rdf->parse_RDF("http://www.wds66.com/rss.xml"); -$rdf->finish(); -// DISABLED: $rdf->clear_cache(); -OUTPUT_HTML("
"); +$rdf->parse_RDF('http://www.wds66.com/rss.xml'); + +// Fix to avoid 'headers already sent' bug. Thanks to Profi-Concept +outputHtml($rdf->finish(true)); +outputHtml(''); -// +// [EOF] ?>