X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-wernis_portal.php;h=9b131e71ab384a20eff42bd078872e0baec4a5d2;hb=12d1414024e87153a133bb1d0fe0185ca2c700c5;hp=c48232b0b3a71ba3219f5d80e8ce0389d05ce576;hpb=669a59ecfdc7d0c948544536eb552a37e5e1fb3c;p=mailer.git diff --git a/inc/modules/guest/what-wernis_portal.php b/inc/modules/guest/what-wernis_portal.php index c48232b0b3..9b131e71ab 100644 --- a/inc/modules/guest/what-wernis_portal.php +++ b/inc/modules/guest/what-wernis_portal.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -32,49 +37,53 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +if (!defined('__SECURITY')) { + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); +} elseif ((!EXT_IS_ACTIVE('wernis')) && (!IS_ADMIN())) { + addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('wernis')); + return; } // Special file -require_once (PATH."inc/rdf.class.php"); +loadIncludeOnce('inc/rdf.class.php'); // Add description as navigation point -ADD_DESCR("guest", basename(__FILE__)); +ADD_DESCR('guest', __FILE__); -OUTPUT_HTML("
"); -$rdf = new fase4_rdf; +OUTPUT_HTML("
"); +$rdf = new fase4_rdf(); $rdf->use_dynamic_display(false); -$rdf->set_CacheDir(PATH."inc/cache/"); -$rdf->set_salt(SITE_KEY); +$rdf->set_CacheDir(constant('PATH')."inc/cache/"); +$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=", - ) +array( + '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("
"); + +// Fix to avoid "headers already sent" bug. Thanks to Profi-Concept +OUTPUT_HTML($rdf->finish(true)); +// @TODO Can this be removed? $rdf->clear_cache(); +OUTPUT_HTML("
"); // ?>