Reverted last commit
[mailer.git] / inc / modules / guest / what-forum.php
index 94fff02b001014e6c7048f8228c8f96ff1c9d2c2..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,53 +0,0 @@
-<?php
-/************************************************************************/
-/* M-XChange v0.1.0                                   Start: 10/19/2003 */
-/* ================                             Last change: 10/19/2003 */
-/*                                                                      */
-/* -------------------------------------------------------------------- */
-/* File              : what-                                            */
-/* -------------------------------------------------------------------- */
-/* Short description :                                                  */
-/* -------------------------------------------------------------------- */
-/* Kurzbeschreibung  :                                                  */
-/* -------------------------------------------------------------------- */
-/*                                                                      */
-/* -------------------------------------------------------------------- */
-/* Copyright (c) 2003 by Roland Haeder                                  */
-/* For more information visit: http://www.autoinstaller.de              */
-/*                                                                      */
-/************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY')) {
-       die();
-}
-
-// Add description as navigation point
-addYouAreHereLink('guest', __FILE__);
-
-// Special file
-loadIncludeOnce('inc/classes/rdf.class.php');
-
-// Load template
-loadTemplate(substr(basename(__FILE__), 5, -4));
-
-outputHtml('<div style="padding-left: 10px; padding-right: 10px">');
-$rdf = new fase4_rdf();
-$rdf->_use_nl2br = false;
-$rdf->use_dynamic_display(false);
-$rdf->set_CacheDir(getConfig('PATH').'inc/cache/');
-$rdf->set_salt(md5(getConfig('SITE_KEY')));
-$rdf->set_Options(
-       array(
-               'textinput' => 'hidden',
-               'sitelink'  => 'http://forum.mxchange.org'
-       )
-);
-$rdf->set_max_item(10);
-$rdf->parse_RDF('http://forum.mxchange.org/rss.xml');
-outputHtml($rdf->finish(true));
-outputHtml('</div>');
-
-
-//
-?>