Fixed referral system (hopefully for good)
authorRoland Häder <roland@mxchange.org>
Thu, 21 Jun 2012 23:56:35 +0000 (23:56 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 21 Jun 2012 23:56:35 +0000 (23:56 +0000)
44 files changed:
inc/libs/security_functions.php
inc/modules/guest/action-actions.php
inc/modules/guest/action-dummy.php
inc/modules/guest/action-interna.php
inc/modules/guest/action-mailer.php
inc/modules/guest/what-about.php
inc/modules/guest/what-aboutme.php
inc/modules/guest/what-awards.php
inc/modules/guest/what-bug-tracker.php
inc/modules/guest/what-contribute.php
inc/modules/guest/what-delphine-helfen-kind.php
inc/modules/guest/what-demo.php
inc/modules/guest/what-docs.php
inc/modules/guest/what-donate.php
inc/modules/guest/what-downloads.php
inc/modules/guest/what-faqs.php
inc/modules/guest/what-forum.php
inc/modules/guest/what-link_us.php
inc/modules/guest/what-listed.php
inc/modules/guest/what-my_weblog.php
inc/modules/guest/what-news-2003.php
inc/modules/guest/what-news-2004.php
inc/modules/guest/what-news-2005.php
inc/modules/guest/what-news-2006.php
inc/modules/guest/what-news-2007.php
inc/modules/guest/what-news-2008.php
inc/modules/guest/what-news-2009.php
inc/modules/guest/what-news-2010.php
inc/modules/guest/what-news.php
inc/modules/guest/what-newsletter.php
inc/modules/guest/what-partner.php
inc/modules/guest/what-pay_faq.php
inc/modules/guest/what-philosophy.php
inc/modules/guest/what-photos.php
inc/modules/guest/what-powered.php
inc/modules/guest/what-preview.php
inc/modules/guest/what-references.php
inc/modules/guest/what-releases.php
inc/modules/guest/what-requirements.php
inc/modules/guest/what-rettet_das_internet.php
inc/modules/guest/what-roadmap.php
inc/modules/guest/what-svn.php
inc/modules/guest/what-why_reg.php
inc/referral-functions.php

index b84140ced338f9beb4540b31ac4c9e9c77b20d4c..ae23cbf22f5837e0f082d3f7495db01028b79dcf 100644 (file)
@@ -46,7 +46,8 @@ if (strpos($_SERVER['PHP_SELF'], basename(__FILE__)) !== false) {
 } // END - if
 
 // Include ctracker, recommended place!
-//require_once('ctracker.php');
+require_once('ctracker.php');
+require_once('ipfilter.php');
 
 /**
  * Function to secure input strings
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..864815d3588f08bff517490c048dd4584e3670d2 100644 (file)
@@ -1,3 +1,57 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/10/2003 *
+ * ===============                              Last change: 01/16/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : action-main.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Hauptmenue: Anmeldung, Login, Willkommen usw.    *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880                                                    $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009)               $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: quix0r                                                   $ *
+ * 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                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf("inc/modules/guest/what-%s.php", getWhat());
+if (isIncludeReadable($INC)) {
+       // Ok, we finally load the guest action module
+       loadIncludeOnce($INC);
+} else {
+       addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..6d56e53e0f7034c6084b0d340fc07e31637aaa31 100644 (file)
@@ -1,3 +1,58 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/10/2003 *
+ * ===============                              Last change: 01/16/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : action-main.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Hauptmenue: Anmeldung, Login, Willkommen usw.    *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880                                                    $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009)               $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: quix0r                                                   $ *
+ * 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                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+       require($INC);
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf("inc/modules/guest/what-%s.php", getWhat());
+if (isIncludeReadable($INC)) {
+       // Ok, we finally load the guest action module
+       loadIncludeOnce($INC);
+} else {
+       addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..6d56e53e0f7034c6084b0d340fc07e31637aaa31 100644 (file)
@@ -1,3 +1,58 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/10/2003 *
+ * ===============                              Last change: 01/16/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : action-main.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Hauptmenue: Anmeldung, Login, Willkommen usw.    *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880                                                    $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009)               $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: quix0r                                                   $ *
+ * 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                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+       require($INC);
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf("inc/modules/guest/what-%s.php", getWhat());
+if (isIncludeReadable($INC)) {
+       // Ok, we finally load the guest action module
+       loadIncludeOnce($INC);
+} else {
+       addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..6d56e53e0f7034c6084b0d340fc07e31637aaa31 100644 (file)
@@ -1,3 +1,58 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/10/2003 *
+ * ===============                              Last change: 01/16/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : action-main.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Main menu: register, login, welcome and so on    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Hauptmenue: Anmeldung, Login, Willkommen usw.    *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 880                                                    $ *
+ * $Date:: 2009-03-07 03:55:57 +0100 (Sat, 07 Mar 2009)               $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: quix0r                                                   $ *
+ * 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                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+       require($INC);
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Load the include file
+$INC = sprintf("inc/modules/guest/what-%s.php", getWhat());
+if (isIncludeReadable($INC)) {
+       // Ok, we finally load the guest action module
+       loadIncludeOnce($INC);
+} else {
+       addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_WHAT'), getWhat());
+}
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..2b11b9cb776085c3098375b68625bb7be67cf048 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify * 
+ * it under the terms of the GNU General Public License as published by * 
+ * the Free Software Foundation; either version 2 of the License.       * 
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..bb9ce74c995ec972c05266180f2f8226f29c930c 100644 (file)
@@ -1,3 +1,71 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 856                                                    $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: stelzi                                                   $ *
+ * 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                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Special file
+loadIncludeOnce('inc/classes/rdf.class.php');
+
+// Load default 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://bugs.mxchange.org'
+       )
+);
+$rdf->set_max_item(10);
+$rdf->parse_RDF('http://bugs.mxchange.org/issues_rss.php?project_id=0');
+outputHtml($rdf->finish(true));
+outputHtml('</div>');
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..af3e4088fccec4e66b6782858c345b74b6d4f31c 100644 (file)
@@ -1,3 +1,33 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003, 2004, 2005 by Roland Haeder                       *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..3e169f5e0934dec8e0b74eb2cc8cce94ad58bfe7 100644 (file)
@@ -1,3 +1,32 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * 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();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+// Redirect to wiki
+redirectToUrl('http://wiki.mxchange.org');
+
+// [EOF]
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..20524a2a22088dc201b5e5be735bf271a8f13035 100644 (file)
@@ -1,3 +1,32 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+// Load template
+loadTemplate('downloads');
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..3e9240b30ca0e32841b7b30f6f8d5b0b628bbcd3 100644 (file)
@@ -1,3 +1,33 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+define('_MYSQL_PREFIX', getConfig('_MYSQL_PREFIX'));
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..94fff02b001014e6c7048f8228c8f96ff1c9d2c2 100644 (file)
@@ -1,3 +1,53 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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>');
+
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..b5270e8bcc62ecc3dea245a17e0e3df62058acbd 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+// [EOF]
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..eca9f6940522d82f8a6cfab36b8a84967831dc07 100644 (file)
@@ -1,3 +1,65 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/19/2003 *
+ * ================                             Last change: 10/19/2003 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
+       require($INC);
+}
+
+// Special file
+loadIncludeOnce('inc/classes/rdf.class.php');
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+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://blog.mxchange.org'
+       )
+);
+$rdf->set_max_item(10);
+$rdf->parse_RDF('http://blog.mxchange.org/feed/');
+$rdf->finish();
+$rdf->clear_cache();
+outputHtml('</div>');
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..2b11b9cb776085c3098375b68625bb7be67cf048 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify * 
+ * it under the terms of the GNU General Public License as published by * 
+ * the Free Software Foundation; either version 2 of the License.       * 
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..fa038fa9b4861717088b72e4ddd54c28b6d5ad61 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..db5638d3ce44602079056b3049ed1424517006c0 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 07/13/2004 *
+ * ================                             Last change: 07/13/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-powered.php                                 *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify * 
+ * it under the terms of the GNU General Public License as published by * 
+ * the Free Software Foundation; either version 2 of the License.       * 
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..7c5f391333f1299b1853ae3d660ffca0fd50300f 100644 (file)
@@ -1,3 +1,38 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify * 
+ * it under the terms of the GNU General Public License as published by * 
+ * the Free Software Foundation; either version 2 of the License.       * 
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+define('__CONTENT_BASIC'   , loadTemplate('order-basic'       , true));
+define('__CONTENT_COMPLETE', loadTemplate('order-complete'    , true));
+define('__CONTENT_MAX'     , loadTemplate('order-max'         , true));
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..4d00eae6b71d194a06177d7bd3d592cc6d68923d 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 02/11/2005 *
+ * ================                             Last change: 02/11/2005 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-rettet_das_internet.php                     *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003 - 2004 by Roland Haeder                            *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..be2f9233ab08305605333081b06c7b9f0c8f6f65 100644 (file)
@@ -1,3 +1,34 @@
 <?php
-// @DEPRECATED
+/************************************************************************
+ * M-XChange v0.1.0                                   Start: 01/27/2004 *
+ * ================                             Last change: 01/27/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-                                            *
+ * -------------------------------------------------------------------- *
+ * Short description :                                                  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  :                                                  *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyleft (c) 2003, 2004, 2005 by Roland Haeder                       *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software. You can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License.       *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+}
+
+// Add description as navigation point
+addYouAreHereLink('guest', __FILE__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..c38e378409a155f702832b05e2bf1095a47231a8 100644 (file)
@@ -1,3 +1,31 @@
 <?php
-// @DEPRECATED
+/************************************************************************/
+/* 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__);
+
+loadTemplate(substr(basename(__FILE__), 5, -4));
+
+//
 ?>
index 02a4fea2023c0b886efefda4c8441725dd20a93e..9d5146c85c5b032bac989559c42f535237a26f70 100644 (file)
@@ -582,6 +582,9 @@ function addMissingReferralLevels ($userid) {
                // Next are the users
                foreach ($levelArray as $refid) {
                        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',level=' . $level . ',refid=' . $refid);
+                       // Add also this user's (maybe) missing levels
+                       addMissingReferralLevels($refid);
+
                        // Does the refid have an array?
                        if (isset($GLOBALS['referral_refid'][$refid])) {
                                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',level=' . $level . ',refid=' . convertNullToZero($refid) . ',count()=' . count($GLOBALS['referral_refid'][$refid]));
@@ -598,6 +601,9 @@ function addMissingReferralLevels ($userid) {
                                                        // Then we must add this ref's refid to the userid's next level
                                                        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',newLevel=' . $newLevel . ',refRefid=' . $refRefid . ' - ADDED!');
                                                        $GLOBALS['referral_refid'][$userid][$newLevel][] = $refRefid;
+
+                                                       // Add also this user's (maybe) missing levels
+                                                       addMissingReferralLevels($refRefid);
                                                } // END - if
                                        } // END - foreach
                                } // END - foreach