X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-wernis_portal.php;h=093b1864ec5fb9c5e98483dbb758fb69b835fc3c;hb=22ba710434fb8b31e8961976ee4a31ae28b4509d;hp=f97690f2f74bd3a2b35b4b5d52a9ae4137412df7;hpb=56156f6c4392510cdbe0eb4f2ccefc23b43e2672;p=mailer.git diff --git a/inc/modules/guest/what-wernis_portal.php b/inc/modules/guest/what-wernis_portal.php index f97690f2f7..093b1864ec 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_nl2br = false; $rdf->use_dynamic_display(false); -$rdf->set_CacheDir(PATH."inc/cache/"); -$rdf->set_salt(SITE_KEY); +$rdf->set_CacheDir(getCachePath() . ''); +$rdf->set_salt(md5(getConfig('SITE_KEY'))); $rdf->set_max_item(10); $rdf->set_Options( array( - 'textinput' => "hidden", - 'sitelink' => "http://www.wds66.com", + 'textinput' => 'hidden', + 'sitelink' => 'http://www.wds66.com', 'refid' => getConfig('wernis_refid'), - 'reflink' => "/ref.php?refid=", + 'reflink' => '/ref.php?refid=', ) ); // Use proxy? -if ((getConfig('proxy_host') != "") && (getConfig('proxy_port') > 0)) { +if (isProxyUsed()) { // Set proxy data $rdf->set_proxy(getConfig('proxy_host'), getConfig('proxy_port')); // Use auth? - if (getConfig('proxy_username') != "") { + if (getConfig('proxy_username') != '') { // Set auth data $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] ?>