Index: typo3/sysext/cms/tslib/index_ts.php =================================================================== --- typo3/sysext/cms/tslib/index_ts.php (revision 7074) +++ typo3/sysext/cms/tslib/index_ts.php (working copy) @@ -84,6 +84,8 @@ // ********************* ob_start(); +require_once(PATH_t3lib . 't3lib_constants.php'); + // ********************* // Timetracking started // ********************* Index: typo3/init.php =================================================================== --- typo3/init.php (revision 7074) +++ typo3/init.php (working copy) @@ -177,6 +177,7 @@ } } +require_once(PATH_t3lib . 't3lib_constants.php'); // ************************************************* // t3lib_div + extention management class included Index: t3lib/t3lib_constants.php =================================================================== --- t3lib/t3lib_constants.php (revision 0) +++ t3lib/t3lib_constants.php (revision 0) @@ -0,0 +1,33 @@ + +* All rights reserved +* +* This script is part of the TYPO3 project. The TYPO3 project 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. +* +* The GNU General Public License can be found at +* http://www.gnu.org/copyleft/gpl.html. +* +* This script 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. +* +* This copyright notice MUST APPEAR in all copies of the script! +***************************************************************/ + + // a tabulator +define('TAB', chr(9)); + // a linefeed +define('LF', chr(10)); + // a carriage return +define('CR', chr(13)); + // a CR-LF combination +define('CRLF', CR . LF); +?> \ No newline at end of file Property changes on: t3lib/t3lib_constants.php ___________________________________________________________________ Added: svn:mime-type + text/plain