From a37993435294fee0961614db96bca845c336a381 Mon Sep 17 00:00:00 2001 From: Karsten Dambekalns Date: Wed, 13 Apr 2005 11:33:44 +0000 Subject: [PATCH] Changed require to require_once to fix bug #958. git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@624 709f56b5-9817-0410-a4d7-c38de5d9e867 --- t3lib/thumbs.php | 6 +++--- typo3/sysext/cms/tslib/index_ts.php | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/t3lib/thumbs.php b/t3lib/thumbs.php index a53ddd8182f1..c12f62eb8a66 100755 --- a/t3lib/thumbs.php +++ b/t3lib/thumbs.php @@ -74,14 +74,14 @@ define('TYPO3_mainDir', 'typo3/'); // This is the directory of the backend admi // ****************** // Including config // ****************** -require(PATH_t3lib.'class.t3lib_div.php'); -require(PATH_t3lib.'class.t3lib_extmgm.php'); +require_once(PATH_t3lib.'class.t3lib_div.php'); +require_once(PATH_t3lib.'class.t3lib_extmgm.php'); require(PATH_t3lib.'config_default.php'); if (!defined ('TYPO3_db')) die ('The configuration file was not included.'); if (!$TYPO3_CONF_VARS['GFX']['image_processing']) die ('ImageProcessing was disabled!'); -require(PATH_t3lib.'class.t3lib_db.php'); // The database library +require_once(PATH_t3lib.'class.t3lib_db.php'); // The database library $TYPO3_DB = t3lib_div::makeInstance('t3lib_DB'); diff --git a/typo3/sysext/cms/tslib/index_ts.php b/typo3/sysext/cms/tslib/index_ts.php index c305b95dc70b..90ec490a83ab 100755 --- a/typo3/sysext/cms/tslib/index_ts.php +++ b/typo3/sysext/cms/tslib/index_ts.php @@ -78,8 +78,8 @@ $TT->push('','Script start'); // Mandatory libraries included // ********************* $TT->push('Include class t3lib_db, t3lib_div, t3lib_extmgm',''); - require(PATH_t3lib.'class.t3lib_div.php'); - require(PATH_t3lib.'class.t3lib_extmgm.php'); + require_once(PATH_t3lib.'class.t3lib_div.php'); + require_once(PATH_t3lib.'class.t3lib_extmgm.php'); $TT->pull(); @@ -88,11 +88,11 @@ $TT->pull(); // Include configuration // ********************** $TT->push('Include config files',''); -require(PATH_t3lib.'config_default.php'); +require_once(PATH_t3lib.'config_default.php'); if (!defined ('TYPO3_db')) die ('The configuration file was not included.'); // the name of the TYPO3 database is stored in this constant. Here the inclusion of the config-file is verified by checking if this var is set. if (!t3lib_extMgm::isLoaded('cms')) die('Error: The main frontend extension "cms" was not loaded. Enable it in the extension manager in the backend.'); -require(PATH_t3lib.'class.t3lib_db.php'); +require_once(PATH_t3lib.'class.t3lib_db.php'); $TYPO3_DB = t3lib_div::makeInstance('t3lib_DB'); $CLIENT = t3lib_div::clientInfo(); // Set to the browser: net / msie if 4+ browsers -- 2.20.1