From 162f720b0f1209b0b24633b326e1385af8a3bd80 Mon Sep 17 00:00:00 2001 From: Xavier Perseguers <typo3@perseguers.ch> Date: Thu, 24 Mar 2011 09:57:11 +0100 Subject: [PATCH] Fixed bug #18016 Change-Id: I9de4384637a2c35499d2f54e67b0924183b1bb9b Reviewed-on: http://review.typo3.org/1266 Reviewed-by: Xavier Perseguers <typo3@perseguers.ch> Tested-by: Xavier Perseguers <typo3@perseguers.ch> --- INSTALL.txt | 1 - NEWS.txt | 20 ++++++++----------- index.php | 2 -- ...ss.t3lib_cache_backend_abstractbackend.php | 1 - .../class.t3lib_cache_backend_apcbackend.php | 1 - .../class.t3lib_cache_backend_dbbackend.php | 1 - .../class.t3lib_cache_backend_filebackend.php | 1 - ...s.t3lib_cache_backend_memcachedbackend.php | 1 - .../class.t3lib_cache_backend_nullbackend.php | 1 - .../class.t3lib_cache_backend_pdobackend.php | 1 - ...b_cache_backend_transientmemorybackend.php | 1 - 11 files changed, 8 insertions(+), 23 deletions(-) diff --git a/INSTALL.txt b/INSTALL.txt index 8de88028c7eb..b810f6bc94c7 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -1,6 +1,5 @@ ******************************************************************************* INSTALLING TYPO3 -$Id$ ******************************************************************************* This document is a part of the TYPO3 project. TYPO3 is an open source web diff --git a/NEWS.txt b/NEWS.txt index e6bbfe18b56b..147870fc9071 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,7 +1,3 @@ -******************************************************************************* -$Id$ -******************************************************************************* - This document is a part of the TYPO3 project. TYPO3 is an open source web content management system released under the GNU GPL. TYPO3 is copyright (c) 1999-2011 by Kasper Skaarhoj. @@ -98,7 +94,7 @@ team. setups. * The default "draft workspace" is now obsolete and will be migrated to a real workspace by an Upgrade Wizard. -* Inline Relational Record Editing (IRRE) finally works in Workspaces. +* Inline Relational Record Editing (IRRE) finally works in Workspaces. * There is a new Scheduler task for the automatic publication of workspaces. This replaces the non-working CLI script "typo3/mod/user/ws/cli/ws_cli.phpsh" (which was removed). @@ -310,7 +306,7 @@ allows settings for example like this: mod.SHARED.colPos_list = 0 [page|layout = 1] mod.SHARED.colPos_list = 1,0 - [global] + [global] ------------------------------------------------------------------------------- Skin / Backend UI @@ -565,18 +561,18 @@ using alt_doc.php, tce_db.php or tce_file.php need to provide a token in the URL or the form. This can be done by using the following code: *alt_doc.php* - t3lib_TCEforms::getHiddenTokenField('editRecord'); - // or + t3lib_TCEforms::getHiddenTokenField('editRecord'); + // or t3lib_BEfunc::getUrlToken('editRecord'); *tce_db.php* - t3lib_TCEforms::getHiddenTokenField('tceAction'); - // or + t3lib_TCEforms::getHiddenTokenField('tceAction'); + // or t3lib_BEfunc::getUrlToken('tceAction'); *tce_file.php* - t3lib_TCEforms::getHiddenTokenField('tceFileAction'); - // or + t3lib_TCEforms::getHiddenTokenField('tceFileAction'); + // or t3lib_BEfunc::getUrlToken('tceFileAction'); A new task (scheduler) for bulk update of passwords for use with diff --git a/index.php b/index.php index ee3b66ac1da1..8027c0dcf17f 100644 --- a/index.php +++ b/index.php @@ -28,8 +28,6 @@ * This is the MAIN DOCUMENT of the TypoScript driven standard front-end (from the "cms" extension) * Basically this is the "index.php" script which all requests for TYPO3 delivered pages goes to in the frontend (the website) * - * $Id$ - * * @author René Fritz <r.fritz@colorcube.de> * @package TYPO3 * @subpackage tslib diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_abstractbackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_abstractbackend.php index 6b4557761267..7663835c8393 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_abstractbackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_abstractbackend.php @@ -31,7 +31,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ abstract class t3lib_cache_backend_AbstractBackend implements t3lib_cache_backend_Backend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_apcbackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_apcbackend.php index 185215eb24ae..357fe2918ea0 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_apcbackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_apcbackend.php @@ -48,7 +48,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ class t3lib_cache_backend_ApcBackend extends t3lib_cache_backend_AbstractBackend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php index 37138e1d9b2b..7d3234febc4b 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php @@ -29,7 +29,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ class t3lib_cache_backend_DbBackend extends t3lib_cache_backend_AbstractBackend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_filebackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_filebackend.php index f96ece6a2385..58c17ea0ec3a 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_filebackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_filebackend.php @@ -31,7 +31,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ class t3lib_cache_backend_FileBackend extends t3lib_cache_backend_AbstractBackend implements t3lib_cache_backend_PhpCapableBackend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackend.php index fec187a8dd48..d3b0bbd9485d 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackend.php @@ -51,7 +51,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ class t3lib_cache_backend_MemcachedBackend extends t3lib_cache_backend_AbstractBackend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_nullbackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_nullbackend.php index c04faf32cdb6..91381c1a5982 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_nullbackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_nullbackend.php @@ -31,7 +31,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ class t3lib_cache_backend_NullBackend extends t3lib_cache_backend_AbstractBackend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_pdobackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_pdobackend.php index b6c32bea7fbf..d576af704303 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_pdobackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_pdobackend.php @@ -30,7 +30,6 @@ * @api * @scope prototype * @author Christian Kuhn <lolli@schwarzbu.ch> - * @version $Id$ */ class t3lib_cache_backend_PdoBackend extends t3lib_cache_backend_AbstractBackend { diff --git a/t3lib/cache/backend/class.t3lib_cache_backend_transientmemorybackend.php b/t3lib/cache/backend/class.t3lib_cache_backend_transientmemorybackend.php index 04ab9cf5f6ca..35e608435698 100644 --- a/t3lib/cache/backend/class.t3lib_cache_backend_transientmemorybackend.php +++ b/t3lib/cache/backend/class.t3lib_cache_backend_transientmemorybackend.php @@ -31,7 +31,6 @@ * @package TYPO3 * @subpackage t3lib_cache * @api - * @version $Id$ */ class t3lib_cache_backend_TransientMemoryBackend extends t3lib_cache_backend_AbstractBackend { -- GitLab