]> git.mxchange.org Git - mailer.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 9 Sep 2024 04:32:53 +0000 (06:32 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 9 Sep 2024 04:32:53 +0000 (06:32 +0200)
- started to remove deprecated (super-old) ?> within PHP scripts. You should
  entirely ommit them inside pure PHP scripts and mixing HTML/CSS with PHP is
  discouraged regardless
- removed braces () from <include|require>[_once] keywords as they aren't
  functions and braces may let them look like functions

Signed-off-by: Roland Häder <roland@mxchange.org>
78 files changed:
DOCS/tpl-validator.php
admin.php
agb.php
ajax.php
api.php
autoreg.php
beg.php
birthday_confirm.php
click.php
confirm.php
contrib/mt_konverter/mt_mxchange_converter.php
cron.php
css.php
debug.php
doubler.php
img.php
inc/ajax/ajax_
inc/autopurge/purge-
inc/code-functions.php
inc/config-functions.php
inc/config-global.php
inc/daily/daily_
inc/database-functions.php
inc/debug/request_
inc/email-functions.php
inc/error-functions.php
inc/extensions-functions.php
inc/extensions/ext-
inc/filters.php
inc/fixes/fix_
inc/gen_sql_patches.php
inc/hourly/hourly_
inc/img/img-
inc/img/img_
inc/inc-functions.php
inc/install/install-inc_
inc/install/install_page_
inc/jobs/job_
inc/js/js-
inc/language-functions.php
inc/loader/load-
inc/loader/load_cache-
inc/modules/admin/action-
inc/modules/admin/subid-
inc/modules/admin/what-
inc/modules/admin/what-config_
inc/modules/admin/what-list_
inc/modules/guest/action-
inc/modules/guest/what-
inc/modules/member/action-
inc/modules/member/subid-
inc/modules/member/what-
inc/monthly/monthly_
inc/pool/pool-
inc/purge/purge-
inc/request-functions.php
inc/reset/reset_
inc/sql-functions.php
inc/template-functions.php
inc/weekly/weekly_
inc/wrapper-functions.php
inc/xml-functions.php
inc/yearly/yearly_
index.php
install.php
js.php
lead-confirm.php
login.php
mailid.php
modules.php
network-delurl.php
network-vcheck.php
ref.php
show_bonus.php
sponsor_confirm.php
sponsor_ref.php
surfbar.php
view.php

index 7921b08b04be4523d3d7b9ec27f0c749e4edb0d5..9e9b65e3c0db4bbea34c4c34d7f6331893b778ca 100644 (file)
@@ -76,4 +76,3 @@ if ((isset($_SERVER['arv'][2])) && (strtolower($_SERVER['arv'][2]) == '--write')
 } // END - if
 
 // [EOF]
-?>
index d9deaec77fddfd0c798e8ef62cca85b66075a579..bee9bbb4d0bfdfd639e0f6d90f5d90e049c369ff 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'admin';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type for e.g. search engines
 setContentType('text/html');
@@ -56,4 +56,3 @@ if ((isAdmin()) && (!isExtensionActive('sql_patches'))) {
 }
 
 // [EOF]
-?>
diff --git a/agb.php b/agb.php
index 5cadca9b3c7eef475e0351dcd0b9573970efd1ed..2aa31846e9bc13ee1e1f1d4d6a1039682fb8b7da 100644 (file)
--- a/agb.php
+++ b/agb.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'agb';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type for e.g. search engines
 setContentType('text/html');
@@ -50,4 +50,3 @@ setContentType('text/html');
 redirectToUrl('modules.php?module=index&amp;what=agb');
 
 // [EOF]
-?>
index 73b3d8f191dfafed5ad278cc04f389c5b790842d..60800ab14e15072479bd793bf0bbc609b7a87678 100644 (file)
--- a/ajax.php
+++ b/ajax.php
@@ -34,7 +34,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security system
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -49,7 +49,7 @@ $GLOBALS['__header_sent'] = 2;
 $GLOBALS['__footer_sent'] = 2;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Load special AJAX library
 loadIncludeOnce('inc/ajax-functions.php');
@@ -82,4 +82,3 @@ if ((getHttpRequestMethod() == 'POST') && (isPostRequestElementSet('level'))) {
 loadPageFooter();
 
 // [EOF]
-?>
diff --git a/api.php b/api.php
index 1b60bfc89a894ae8fa251c2dc16ec4d4cb447b7c..c60d3530be931e10994f7a72de4f96c9e3ba91a3 100644 (file)
--- a/api.php
+++ b/api.php
@@ -34,7 +34,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security system
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -52,7 +52,7 @@ $GLOBALS['__footer_sent'] = 2;
 setHttpStatus('404 Not Found');
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Load special API library
 //loadIncludeOnce('inc/api-functions.php');
@@ -69,4 +69,3 @@ loadPageHeader();
 loadPageFooter();
 
 // [EOF]
-?>
index f843365074270b763ba1a73389e42c47cb8bf750..b1c160536fc10d1bb29a695f7c250548428456c2 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -46,7 +46,7 @@ $GLOBALS['__header_sent'] = 2;
 $GLOBALS['__footer_sent'] = 2;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/plain');
@@ -60,4 +60,3 @@ loadPageHeader();
 loadPageFooter();
 
 // [EOF]
-?>
diff --git a/beg.php b/beg.php
index 5114836eb16db9ff3e76d491993af5bb349fa250..5bed95f1d9a1ccb2a765f95ddbbc55800355fda9 100644 (file)
--- a/beg.php
+++ b/beg.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -42,7 +42,7 @@ $GLOBALS['__output_mode'] = '0';
 $errorCode = NULL;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -166,8 +166,7 @@ if (isGetRequestElementSet('userid')) {
                if ((getBegPayMode() != 'NONE') && ($isPayed === TRUE)) {
                        // Prepare content for template
                        // @TODO Opps, what is missing here???
-                       $content = array(
-                       );
+                       $content = [];
 
                        // Include config-depending template
                        loadTemplate('beg_pay_code_' . strtolower(getBegPayMode()), FALSE, $content);
@@ -208,4 +207,3 @@ if (isGetRequestElementSet('userid')) {
 doShutdown();
 
 // [EOF]
-?>
index 4039b7cb660f5f8f4c06985d9935f3d812ff6613..fbf41dfa5a04b05399c289587041992363cda556 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'birthday_confirm';
 $GLOBALS['__output_mode'] = '0';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -125,4 +125,3 @@ loadTemplate('birthday_confirm', FALSE, $content);
 loadPageFooter();
 
 // [EOF]
-?>
index 0ef848cee5a0a32517870570f43ed3a1e2b8b5ad..21dbdf9a141ff2eb13048d2b336b3fa3608491c7 100644 (file)
--- a/click.php
+++ b/click.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'click';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type, this is required for search engines
 setContentType('text/html');
@@ -56,4 +56,3 @@ redirectToUrl('modules.php?module=index');
 doShutdown();
 
 // [EOF]
-?>
index 7974397447cf30df5355a654b269da1fbf90d004..6ae890472955f778c9155308c4dc6cc0556c8e80 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'confirm';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type for e.g. search engines
 setContentType('text/html');
@@ -59,4 +59,3 @@ if (isGetRequestElementSet('hash')) {
 redirectToUrl($url);
 
 // [EOF]
-?>
index bdd947d1373748c4c5eef3091a8b5a6b2265fb53..e8e48a0a10eade0ab23dafc2d6d8ae083ae636db 100644 (file)
@@ -32,7 +32,7 @@
  ************************************************************************/
 
 // Verbindung oeffnen...
-require("config/config.php");
+require "config/config.php";
 
 // Header ausgeben
 echo "<DIV align=\"center\"><STRONG>Datenkonverter nach MXChange-Datenbank</STRONG></DIV><BR>\n";
@@ -213,5 +213,4 @@ echo "Datei <B>tmp/mxchange-db.sql</B> mit <B>".filesize("tmp/mxchange-db.sql").
 <BR>
 Bevor Sie jedoch den Dump einspielen, m&uuml;ssen Sie unbedingt die <A href=\"http://www.mxchange.org\">nickname-Erweiterung</A> meines Scriptes eingerichtet haben! Anderfalls kommt es zu Fehlermeldungen und die User-Daten konnten nicht importiert werden.\n";
 
-//
-?>
+// [EOF]
index b6863e5d69ce77670eef05886c4a6a73eae0b80c..2e4ac39d3fd73f0ad32ec3ec2e786863ef9566ae 100644 (file)
--- a/cron.php
+++ b/cron.php
@@ -34,7 +34,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security system
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -49,7 +49,7 @@ $GLOBALS['__header_sent'] = 2;
 $GLOBALS['__footer_sent'] = 2;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Load header here
 loadPageHeader();
@@ -60,4 +60,3 @@ loadPageHeader();
 loadPageFooter();
 
 // [EOF]
-?>
diff --git a/css.php b/css.php
index 5178b29a0fa3c3259ead6154a05871bd3c6f2258..3d144ad297e30c6119e2d6e244cc8347b2955a3d 100644 (file)
--- a/css.php
+++ b/css.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Footer is disabled in CSS mode
 $GLOBALS['__footer_sent'] = -1;
@@ -44,7 +44,7 @@ $GLOBALS['__module']      = 'css';
 $GLOBALS['__output_mode'] = 1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set header
 setContentType('text/css');
@@ -59,4 +59,3 @@ loadStyleSheets();
 loadPageFooter();
 
 // [EOF]
-?>
index 50c800f0dad1895be856c43c21081f85d52f996a..d2ea43f655210bfbff9e73c31d51ecfe4b19b96e 100644 (file)
--- a/debug.php
+++ b/debug.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'debug';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Redirect only to registration page when this script is installed
 if ((isExtensionActive('debug')) && (!ifFatalErrorsDetected())) {
@@ -80,4 +80,3 @@ if ((isExtensionActive('debug')) && (!ifFatalErrorsDetected())) {
 doShutdown();
 
 // [EOF]
-?>
index c1b3b91a6ede2251280abda4083589d942a6fec9..145f3ad86e98d4db7f1d3ba2c18c4c7e12c1a78d 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'doubler';
 $GLOBALS['__output_mode'] = '0';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -50,9 +50,9 @@ setContentType('text/html');
 redirectOnUninstalledExtension('doubler');
 
 // Init content array
-$content = array(
+$content = [
        'message' => '',
-);
+];
 
 // Begin with doubler script...
 if (isFormSent()) {
@@ -204,4 +204,3 @@ loadTemplate('doubler_index', FALSE, $content);
 loadPageFooter();
 
 // [EOF]
-?>
diff --git a/img.php b/img.php
index 27722067f1d3ae10ebd2685ed09c5d270cde38a0..a883396929602f503f820c26e6bdfd88b8bdb69c 100644 (file)
--- a/img.php
+++ b/img.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'img';
 $GLOBALS['__output_mode'] = -3;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Load header
 loadPageHeader();
@@ -65,4 +65,3 @@ if (isGetRequestElementSet('code')) {
 loadPageFooter();
 
 // [EOF]
-?>
index cc7114c25e0718f5f3fc67c223655b400b951e87..0bc357cc8cf868b63e630a0b0dcc02feb969394c 100644 (file)
@@ -39,4 +39,3 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // [EOF]
-?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..7d6dceec926b2c790d8a6cc64b29a822d57f79e9 100644 (file)
@@ -1,3 +1,2 @@
 <?php
 // @DEPRECATED
-?>
index 81a3e85331398d0e70f2e36dc4ef65814339aa33..bd7bcb2a891ea9c944fb1377ec053d0eb2303fe0 100644 (file)
@@ -72,4 +72,3 @@ function getHexErrorCode ($errorCode) {
 }
 
 // [EOF]
-?>
index fd11c3e024303cf14bebaac7c3b8ed132e4d9cff..467ab1f2b1f62365e026d1b4e42a1c3736b5f3d7 100644 (file)
@@ -458,4 +458,3 @@ function getConfigEntries ($configEntries, $value) {
 }
 
 // [EOF]
-?>
index 94cb2c867a5a7c03fdab3fccac7f6917d41539f0..e11979e52b90144b56a8f5bdec67283e44ba978d 100644 (file)
@@ -86,4 +86,3 @@ setConfigEntry('minium_admin_pass_length', 4);
 unset($URL);
 
 // [EOF]
-?>
index f853df3719320a0e64cda906b30e33765e62ae42..875cfb4a303d3ed892bdd70ba5da50dae50ba723 100644 (file)
@@ -48,4 +48,3 @@ if (!defined('__SECURITY')) {
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
 
 // [EOF]
-?>
index a9f000fd5af3bb49ab47b155efe000df399d8ba0..a2bb4ece4520b2820507ad5585ef4b0535d898eb 100644 (file)
@@ -2554,4 +2554,3 @@ ORDER BY
 }
 
 // [EOF]
-?>
index a980dc5a25739dd0af20bbaa89a1c46c401a1560..80a2b380a9847f7944ff9ac077c86ccd12d3d3aa 100644 (file)
@@ -40,5 +40,4 @@ if (!defined('__SECURITY')) {
        die();
 } // END - if
 
-//
-?>
+// [EOF]
index 87eab21d5cbba90c1c6a4eeb00ece1ecfb1ba9a8..197f016de7438b4d3e147ff0c7e478d5a2264ef1 100644 (file)
@@ -271,4 +271,3 @@ function doTemplateAddExtraHtmlMailHeaders ($templateName, $clear, $extraHeaders
 }
 
 // [EOF]
-?>
index 9c36418b715489d43623d598c2101923a146483f..1d32d27a0aa2233bf22742e1a1b5a0e1e99735db 100644 (file)
@@ -67,4 +67,3 @@ function enableExitOnError ($enable = TRUE) {
 }
 
 // [EOF]
-?>
index fb579c1ec199ec1ddfe47ad696c3df9ff3666d9f..acb65c929ae1a2f936265126f79090f1027cce64 100644 (file)
@@ -2394,4 +2394,3 @@ function getExtensionSelectedFromSession ($ext_name, $sessionName, $separator =
 }
 
 // [EOF]
-?>
index 518df8756d4be5cd7949e425ff9693dbba2f0348..2658d86ecdd49cfd2286428b8862d847a3db9cfd 100644 (file)
@@ -97,4 +97,3 @@ switch (getExtensionMode()) {
 } // END - switch
 
 // [EOF]
-?>
index 12e10ec5c1cafd72f5c5561416b57f51df40e146..7c418903a375895f0ec9219bc20f9c39648454a4 100644 (file)
@@ -1428,4 +1428,3 @@ function FILTER_EXCLUDE_DEFAULT_REFID ($filterData = []) {
 }
 
 // [EOF]
-?>
index 9f2df726c7135f856ecf877ab07993c15d1b0e51..5520be29659ab537f4e91362c2abc820d20c1abb 100644 (file)
@@ -36,4 +36,3 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // [EOF]
-?>
index acfbd8084b0462b1fcc5ab34594ce52362a13b32..846faa1e677c4bf4bd3bdb54b9371aa7b6d9c61c 100644 (file)
@@ -100,4 +100,3 @@ if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isValidCacheInstance())
 } // END - if
 
 // [EOF]
-?>
index 262d6a3b21f1610b77606af38e5978d3cd7b458f..8ee442e87222c79f0960435efa786b1eb3d84393 100644 (file)
@@ -55,4 +55,3 @@ if (!defined('__SECURITY')) {
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'hourly reset ended.');
 
 // [EOF]
-?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..7d6dceec926b2c790d8a6cc64b29a822d57f79e9 100644 (file)
@@ -1,3 +1,2 @@
 <?php
 // @DEPRECATED
-?>
index c3ff4a7bd0a37b5acf1cbcf835d73b0c8fde8981..4e1296370a5b851eb108c7839a4a023adb599320 100644 (file)
@@ -43,4 +43,3 @@ if (!defined('__SECURITY')) {
 }
 
 // [EOF]
-?>
index bd6403d7f706b1838cbc57d8c885173c08a11d49..d6e5ada32a124f20d786af0fde78217824439e71 100644 (file)
@@ -165,4 +165,3 @@ function isIncludeReadable ($inc) {
 }
 
 // [EOF]
-?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..7d6dceec926b2c790d8a6cc64b29a822d57f79e9 100644 (file)
@@ -1,3 +1,2 @@
 <?php
 // @DEPRECATED
-?>
index dc402162ae3334e94efefaea82b5d28d9dac6ae4..a9f76a024081795c1b5d4fb5a0b5c8b098d708ad 100644 (file)
@@ -41,4 +41,3 @@ if ((!defined('__SECURITY')) || (!isInstaller())) {
 } // END - if
 
 // [EOF]
-?>
index 81022ea9f835313681acd67b91d5243b461c2706..676967de762b25680fe2dae0be324bc811c514bd 100644 (file)
@@ -53,4 +53,3 @@ if (!defined('__SECURITY')) {
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Cron job ended.');
 
 // [EOF]
-?>
index 68b7a3a1106c95261af2c7ed49ecb497af5038d9..eb3f3f28a4c064c6d47a46cb3833f219381b808f 100644 (file)
@@ -43,4 +43,3 @@ if (!defined('__SECURITY')) {
 }
 
 // [EOF]
-?>
index 2878de0514a4de42081969f3e8b71ca5fa6996ad..b19311c350ee0ef2111126aae53ce893506e34ba 100644 (file)
@@ -358,4 +358,3 @@ function isMessageMasked ($messageId, $strict = TRUE) {
 }
 
 // [EOF]
-?>
index 41a0f716c92d640761b99fb52cfc4d457cc455f0..79bbe72276ce6c9a5eff268ac4f1245c432e201f 100644 (file)
@@ -63,4 +63,3 @@ if (($GLOBALS['cache_instance']->loadCacheFile('foo')) && ($GLOBALS['cache_insta
 }
 
 // [EOF]
-?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..7d6dceec926b2c790d8a6cc64b29a822d57f79e9 100644 (file)
@@ -1,3 +1,2 @@
 <?php
 // @DEPRECATED
-?>
index dfc84f942ca1647fb7497ee4cfe76be0a4fdd7a3..d3e783093256c8c898f7a32a299c2e9fbb8cf492 100644 (file)
@@ -53,4 +53,3 @@ if (isIncludeReadable($inc)) {
 }
 
 // [EOF]
-?>
index 7525c640e72a4fed0396aad06fea14634898d4e0..41e85df95222a7a9df1373bc5fab40e1c7741634 100644 (file)
@@ -43,4 +43,3 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 }
 
 // [EOF]
-?>
index f74788d31aedac45c1d9eb966e219e3773bdb473..fdf1db71f9723e360698cef07cb1712b16ccb002 100644 (file)
@@ -44,4 +44,3 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // [EOF]
-?>
index 6166f2bf30e0c7536ab9f04a2220b18d8b17e716..7f0266a783f515a7961ab6a200fe05977c1cb51b 100644 (file)
@@ -52,4 +52,3 @@ if (isFormSent('save_config')) {
 }
 
 // [EOF]
-?>
index 9182b442d2794fefa0b5ed54f9be3eb2d1d79ef4..2fd6a4381ffdfbefc1279b7c353c0702a15490d4 100644 (file)
@@ -104,4 +104,3 @@ if ($show === FALSE) {
 doGenericXmlTemplateCallback('admin_list_!!!');
 
 // [EOF]
-?>
index a20fb33f27a30acfe33b7e13226056b0b6271732..eaf73d142038e91b00416a773588eadf1d685c93 100644 (file)
@@ -56,4 +56,3 @@ if (isIncludeReadable($inc)) {
 }
 
 // [EOF]
-?>
index ef9c4b27ea4dd0bd66f0d79a887267407feb32e0..a6d04b055ca7fbad52738a7769d5d870d7198f20 100644 (file)
@@ -42,4 +42,3 @@ addYouAreHereLink('guest', __FILE__);
 loadTemplate(substr(basename(__FILE__), 5, -4));
 
 // [EOF]
-?>
index d7386e462d3d91fae5ae0c3266c699135b42cac3..e3bd1851d91fa79a3b4f19965efe805c6ed0339a 100644 (file)
@@ -63,4 +63,3 @@ if (isIncludeReadable($inc)) {
 }
 
 // [EOF]
-?>
index 88834b3eaf7cfce13c4d722acd8d8cd15cd189a4..948d4f9044cdf1c035467c8009829f555b3d08a4 100644 (file)
@@ -45,4 +45,3 @@ if (!defined('__SECURITY')) {
 }
 
 // [EOF]
-?>
index ba42719d01671cbf554c950793914afd5e1eb095..c8b7ee6cd152e828dea8faeb3caf8a8a312ae073 100644 (file)
@@ -55,4 +55,3 @@ if ((!isExtensionActive('')) && (!isAdmin())) {
 loadTemplate(substr(basename(__FILE__), 5, -4));
 
 // [EOF]
-?>
index 8c2d68bd79f9ecff2e2a495902f23243b6b1c2be..df992587e01d0231dd741a1bd31d52b61aeb3a38 100644 (file)
@@ -50,4 +50,3 @@ if (!defined('__SECURITY')) {
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
 
 // [EOF]
-?>
index 0610fd88c8817aedce7181197512e4beef34c7fb..1d878ba6a3cd8cad441bd547b6a98aef14743756 100644 (file)
@@ -50,4 +50,3 @@ if ((isResetModeEnabled()) || (!isHtmlOutputMode())) {
 }
 
 // [EOF]
-?>
index 254ae8dde55a7275caf4ddce147575abfa02458e..9fb2bc05a4f7a647e0950406968c37bbd98fb425 100644 (file)
@@ -47,4 +47,3 @@ if ((!isExtensionActive('autopurge')) || (!isAutoPurgingActive())) {
 } // END - if
 
 // [EOF]
-?>
index d90c41bb91d8849cb9b9ed763bbe86d356d0860a..aa70af2c55a382fec64fc8816d6d335f09f57c0e 100644 (file)
@@ -279,4 +279,3 @@ function addAllGetRequestParameters () {
 }
 
 // [EOF]
-?>
index f551ef47b7591c74e7b59193e56a1fa6505a87ab..7d6dceec926b2c790d8a6cc64b29a822d57f79e9 100644 (file)
@@ -1,3 +1,2 @@
 <?php
 // @DEPRECATED
-?>
index ecd6fb1cff164dcb5266a2c232b5c7c6e110c883..a53994b89d99d9f1a0208f815776b6ba7de35f7c 100644 (file)
@@ -814,4 +814,3 @@ function logSqlError ($file, $line, $message) {
 }
 
 // [EOF]
-?>
index 3f9be64120d0f51792cb888ea666c47d55be6261..edf8be94aacdf707dad752a2a953c9c2dbc64fae 100644 (file)
@@ -2302,7 +2302,7 @@ function doTemplateMemberFooterExtras ($templateName, $clear) {
        } // END - if
 
        // Init filter data
-       $filterData = array(
+       $filterData = [
                // Current user's id number
                'userid'   => getMemberId(),
                // Name of used template
@@ -2311,7 +2311,7 @@ function doTemplateMemberFooterExtras ($templateName, $clear) {
                '__data'   => [],
                // Where the HTML output will go
                '__output' => '',
-       );
+       ];
 
        // Run the filter chain
        $filterData = runFilterChain('member_footer_extras', $filterData);
@@ -2364,10 +2364,10 @@ function doTemplateGetTermsConditionsLink ($templateName, $clear) {
 // Template helper function to create selection box for "locked points mode"
 function doTemplatePointsLockedModeSelectionBox ($templateName, $clear = FALSE, $default = NULL) {
        // Init array
-       $lockedModes = array(
-               0 => array('mode' => 'LOCKED'),
-               1 => array('mode' => 'UNLOCKED'),
-       );
+       $lockedModes = [
+               0 => ['mode' => 'LOCKED'],
+               1 => ['mode' => 'UNLOCKED'],
+       ];
 
        // Handle it over to generateSelectionBoxFromArray()
        $content = generateSelectionBoxFromArray($lockedModes, 'points_locked_mode', 'mode', '', '', '', $default);
@@ -2379,10 +2379,10 @@ function doTemplatePointsLockedModeSelectionBox ($templateName, $clear = FALSE,
 // Template helper function to create selection box for payment method
 function doTemplatePointsPaymentMethodSelectionBox ($templateName, $clear = FALSE, $default = NULL) {
        // Init array
-       $paymentMethods = array(
-               0 => array('method' => 'DIRECT'),
-               1 => array('method' => 'REFERRAL'),
-       );
+       $paymentMethods = [
+               0 => ['method' => 'DIRECT'],
+               1 => ['method' => 'REFERRAL'],
+       ];
 
        // Handle it over to generateSelectionBoxFromArray()
        $content = generateSelectionBoxFromArray($paymentMethods, 'points_payment_method', 'method', '', '', '', $default);
@@ -2415,7 +2415,7 @@ function doTemplateMetaFavIcon ($templateName, $clear = FALSE) {
        $out = '';
 
        // Check all common extensions
-       foreach (array('ico', 'gif', 'png') as $extension) {
+       foreach (['ico', 'gif', 'png'] as $extension) {
                // Is the file there?
                if (isFileReadable(getPath() . 'favicon.' . $extension)) {
                        // Then use this and abort
@@ -2547,4 +2547,3 @@ function loadPageFooter () {
 }
 
 // [EOF]
-?>
index df224031e4c62505839606087e2666d18d49555d..43fe07ef16e1e785a88f0937d1164f995fd7bef9 100644 (file)
@@ -50,4 +50,3 @@ if (!defined('__SECURITY')) {
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Weekly reset ended.');
 
 // [EOF]
-?>
index 9cbbf6faf16c2e11e7889c2b628537859e1cf54e..960c723826a6efbe5953283d251abfec61e0ba71 100644 (file)
@@ -3625,4 +3625,3 @@ function doNormalBootstrap () {
 }
 
 // [EOF]
-?>
index 3302f8ab0c10bf8a63560517debf56783cf3b174..7d95d5971045b7a5550b5ed48c736ad48a3be76d 100644 (file)
@@ -469,4 +469,3 @@ function searchXmlArray ($value, $columns, $childKey) {
 }
 
 // [EOF]
-?>
index 06b869115bae631dbecba771f11ea8381abdb510..495215cccf707c818950ef51bff81b1b3d8cb1e3 100644 (file)
@@ -50,4 +50,3 @@ if (!defined('__SECURITY')) {
 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Yearly reset ended.');
 
 // [EOF]
-?>
index 0422155a3502e9d255fa459fa2b863be8b767f9b..6be6e74f95d650412a2c6befba954f7782a5f947 100644 (file)
--- a/index.php
+++ b/index.php
@@ -35,7 +35,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -46,7 +46,7 @@ $GLOBALS['__what']        = 'welcome';
 $GLOBALS['__output_mode'] = '0';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Fix what to 'home'
 setWhat(getIndexHome());
@@ -99,4 +99,3 @@ if ((isSessionVariableSet('visited')) || (getIndexDelay() > -1)) {
 }
 
 // [EOF]
-?>
index 23fc61f58aa77b20c79dc27b2e3e67dc8d924cf1..74f8d46b21dc3dd2c19444b6847a76a2217b3944 100644 (file)
@@ -34,7 +34,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security system
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -47,7 +47,7 @@ $GLOBALS['__module']      = 'install';
 $GLOBALS['__output_mode'] = '0';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -86,9 +86,9 @@ if (isGetRequestElementSet('installer')) {
        addTemplateToInstallContent('install_page_init');
 
        // Prepare content
-       $content = array(
+       $content = [
                'install_page' => getRequestElement('install_page')
-       );
+       ];
 
        // Load main installation table
        loadTemplate('install_main_ajax', FALSE, $content);
@@ -108,4 +108,3 @@ if (isGetRequestElementSet('installer')) {
 loadPageFooter();
 
 // [EOF]
-?>
diff --git a/js.php b/js.php
index 7fae050e4db804ab424d1ecd8d7774e70df16314..c15220a09ea6783140260d8c787683613839531e 100644 (file)
--- a/js.php
+++ b/js.php
@@ -34,7 +34,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -52,7 +52,7 @@ $GLOBALS['__module']      = 'js';
 $GLOBALS['__output_mode'] = 1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set header and HTTP status
 setContentType('text/javascript');
@@ -83,4 +83,3 @@ if (isGetRequestElementSet('js')) {
 doShutdown();
 
 // [EOF]
-?>
index 69125767d86c0b29e4ba9a5ce4ab46efe637ccca..163842d8967b43d47c891c4fd2536ddec51a3fac 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'lead-confirm';
 $GLOBALS['__output_mode'] = '0';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -53,10 +53,10 @@ redirectOnUninstalledExtension('lead');
 loadPageHeader();
 
 // Initialize the array for the template
-$content = array(
+$content = [
        'lead_userid' => '0',
        'lead_email'  => '{?WEBMASTER?}'
-);
+];
 
 // Is the cookie set?
 if ((isSessionVariableSet('lead_userid')) && (fetchUserData(getSession('lead_userid')))) {
@@ -74,4 +74,3 @@ loadTemplate('lead_code', FALSE, $content);
 loadPageFooter();
 
 // [EOF]
-?>
index fa30f29771e1a371eafc5c6f16d80944c27aab5f..b1564cb4a509efa7513798c8f5e4e1c1e5dd6cd2 100644 (file)
--- a/login.php
+++ b/login.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'login';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Is this a member?
 if (isMember()) {
@@ -53,4 +53,3 @@ if (isMember()) {
 }
 
 // [EOF]
-?>
index cebf439e9ad3179ee521c8f9f41906ee15bd650e..de0a51292d253922353ae6c96999a25dd20513b6 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -44,7 +44,7 @@ $GLOBALS['__output_mode'] = '0';
 $GLOBALS['__copyright_enabled'] = 'N';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type and HTTP status
 setContentType('text/html');
@@ -57,14 +57,14 @@ redirectOnUninstalledExtension('mailid');
 redirectOnUninstalledExtension('other');
 
 // Init data
-$data = array(
+$data = [
        'error_code' => '0',
        'userid'     => '0',
        'id'         => '0',
        'code'       => '0',
        'do'         => 'frames',
        'type'       => '',
-);
+];
 
 // Secure all data
 if (isGetRequestElementSet('userid')) $data['userid'] = bigintval(getRequestElement('userid'));
@@ -256,4 +256,3 @@ if ($data['do'] != 'img') {
 doShutdown();
 
 // [EOF]
-?>
index 2a2440708a8b4a088fda2bcfae22f797de222c60..461d3c9b29f5c65866adfd8c23cf81e52351a951 100644 (file)
@@ -34,7 +34,7 @@
 //* DEBUG: */ xdebug_start_trace();
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -44,10 +44,9 @@ $GLOBALS['__module']      = 'unknown';
 $GLOBALS['__output_mode'] = '0';
 
 // Needed include files
-require('inc/init.php');
+require 'inc/init.php';
 
 // Include module
 doIncludeModule();
 
 // [EOF]
-?>
index ff4cbeec0c82de4ab7ae33dea143ffbb6f6de278..dcc4170e3c4ac11bd3c174d7e3717453c5dad0db 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'network-delurl';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set HTTP status to 500 (if ext-network is not found, but this script is called)
 setHttpStatus('500 Internal Server Error');
@@ -62,4 +62,3 @@ if ((isExtensionInstalled('network')) && (countRequestGet() > 0)) {
 loadPageFooter();
 
 // [EOF]
-?>
index a21f50ea99b6e72319a266767a0bfc74d4a7f3a2..065a47ecbd3ba57fb5487dff374233f38bf051c4 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'network-vcheck';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set HTTP status to 500 (if ext-network is not found, but this script is called)
 setHttpStatus('500 Internal Server Error');
@@ -62,4 +62,3 @@ if ((isExtensionInstalled('network')) && (countRequestGet() > 0)) {
 loadPageFooter();
 
 // [EOF]
-?>
diff --git a/ref.php b/ref.php
index 80850e2f811ee9b9472eb329410468c0796f2871..e995833ee06e2af5b6115626500ac782eba3a0dd 100644 (file)
--- a/ref.php
+++ b/ref.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'ref';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type for e.g. search engines
 setContentType('text/html');
@@ -74,4 +74,3 @@ if ((isExtensionActive('user')) && (isValidReferralId()) && (isValidId(determine
 redirectToUrl($url);
 
 // [EOF]
-?>
index 1b8dec3d3bbf3f6d05660525f7254d42c5e10831..7dedef5108f8574ba1bbec75736fa4126db0b980 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'show_bonus';
 $GLOBALS['__output_mode'] = '0';
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -130,4 +130,3 @@ loadTemplate('show_bonus', FALSE, $content);
 loadPageFooter();
 
 // [EOF]
-?>
index 589db853d7f999987b30c864c845f06af81e167b..4f8bf17f7619f75e9c77b1c963b9be3966c6d0d5 100644 (file)
@@ -30,7 +30,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -40,7 +40,7 @@ $GLOBALS['__module']      = 'sponsor_confirm';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type for e.g. search engines
 setContentType('text/html');
@@ -58,4 +58,3 @@ if (isGetRequestElementSet('hash')) {
 redirectToUrl($url);
 
 // [EOF]
-?>
index eed2e8315c91d4e208758a8564b94ff94772672e..f63c263b88657f432404f0bcc5d59eb90ec48f43 100644 (file)
@@ -30,7 +30,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -40,7 +40,7 @@ $GLOBALS['__module']      = 'sponsor_ref';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type for e.g. search engines
 setContentType('text/html');
@@ -58,4 +58,3 @@ if (isValidReferralId()) {
 redirectToUrl($url);
 
 // [EOF]
-?>
index d33ab6b78c8577307c8d9d89de4336dcacffabaf..5f4f514e9d4339f1ebbfcf853b1523a149dd1d2b 100644 (file)
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php'; 
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -42,7 +42,7 @@ $GLOBALS['__output_mode'] = '0';
 $GLOBALS['__header_sent'] = 3;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Set content type
 setContentType('text/html');
@@ -116,27 +116,27 @@ if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement('
                unsetGetRequestElement('frame');
        } elseif ((!isFullPage()) && (getRequestElement('frame') == 'stats')) {
                // Prepare content
-               $content = array(
+               $content = [
                        'points' => getTotalPoints(getMemberId()),
                        'reload' => (getSurfbarStatsReload() * 1000)
-               );
+               ];
 
                // Load template for "stats" page
                loadTemplate('surfbar_frame_stats', FALSE, $content);
        } elseif ((!isFullPage()) && (getRequestElement('frame') == 'textlinks')) {
                // Prepare content
-               $content = array(
+               $content = [
                        'reload' => (getSurfbarStatsReload() * 1000)
-               );
+               ];
 
                // Load template for "stats" page
                loadTemplate('surfbar_frame_textlinks', FALSE, $content);
        } else {
                // Prepare content
-               $content = array(
+               $content = [
                        'start'     => str_repeat('X', strlen(getSurfbarRestartTime())),
                        'autostart' => (isSurfbarAutoStartEnabled()) ? 'true' : 'false'
-               );
+               ];
 
                // Load template for stopped surfbar
                loadTemplate('surfbar_stopped', FALSE, $content);
@@ -181,10 +181,10 @@ if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement('
                // Is there a valid id?
                if (isValidId($nextId)) {
                        // Then prepare other content
-                       $content = array(
+                       $content = [
                                'url_id' => $nextId,
                                'xxx'    => str_repeat('X', strlen(getSurfbarWaitingTime($nextId))),
-                       );
+                       ];
 
                        // Update salt (double-call lock!) and statistics
                        updateSurfbarSaltStatistics();
@@ -213,4 +213,3 @@ $GLOBALS['__footer_sent'] = 3;
 loadPageFooter();
 
 // [EOF]
-?>
index 3d1d70fc4e394d2aa844e4798ffd5b24adef3e43..47b18360bcbf0ee9096f3e10b78606b77439afa2 100644 (file)
--- a/view.php
+++ b/view.php
@@ -31,7 +31,7 @@
  ************************************************************************/
 
 // Load security stuff here
-require('inc/libs/security_functions.php');
+require 'inc/libs/security_functions.php';
 
 // Init start time
 $GLOBALS['__start_time'] = microtime(TRUE);
@@ -41,7 +41,7 @@ $GLOBALS['__module']      = 'view';
 $GLOBALS['__output_mode'] = -1;
 
 // Initialize application
-require('inc/init.php');
+require 'inc/init.php';
 
 // Run filter chain
 runFilterChain('handle_view_php');
@@ -50,4 +50,3 @@ runFilterChain('handle_view_php');
 doShutdown();
 
 // [EOF]
-?>