- Apr 14, 2013
-
-
Oliver Hader authored
A ProcessedFile/Thumbnail is always regenerated even if there are not modifications to the original file. The reasons for this spread all over the ProcessedFile handling and boils down to a new ProcessedFile is being persisted in the file-system by using a regular ResourceStorage::addFile() call that results in a plain File object. The indexer then tries to load this file and will create a new UID for the thumbnail in sys_file. This uid value is then used to update(!) the sys_file_processedfile entry - which fails since the uid was taken from sys_file. The bug was introduced in I53e4eb42def291ba88ce18209a348b1e2f592185 were the processedFile is updated with information of a File object and the wrong uid is transfered as property. Fixes: #47140 Releases: 6.1, 6.0 Change-Id: I4252b237d6022485c51ad32a7f956f5afcda8c08 Reviewed-on: https://review.typo3.org/19810 Reviewed-by: Oliver Hader Tested-by: Oliver Hader
-
Frank Frewer authored
This patch suppresses that some pages will be shown as subpages of themselves while defining a temporary mountpoint in the pagetree and then searching in the mounted tree. Fixes: #47123 Releases: 6.1, 6.0, 4.7 Change-Id: I2d6f895b6b6fd110e9a4fbc163295e8c992fdb61 Reviewed-on: https://review.typo3.org/19799 Reviewed-by: Jigal van Hemert Tested-by: Jigal van Hemert
-
Stefan Neufeind authored
Resolves: #47199 Releases: 6.1 Change-Id: Id7326e8766e9bd2923102ea4fe1645007b82964b Reviewed-on: https://review.typo3.org/19949 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Stefan Neufeind authored
Since 6.1 mediumDoc etc. are deprecated and DocumentTemplate should be used. Adjust example-code to this change. Resolves: #47204 Releases: 6.1 Change-Id: I20d7d1c18da738717db7e2dfb1844e80d99343da Reviewed-on: https://review.typo3.org/19953 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I5d5d13cac9cb6d157b1ac71a81eb5a21be752b73 Reviewed-on: https://review.typo3.org/19961 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I6084b12d23644b4ecf9750c63b7eaa26955c4704 Reviewed-on: https://review.typo3.org/19959 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
The patch implements "lazy" database connection, a connection will be established by database connection class on demand. Bootstrap now just sets credentials of the database connection class after LocalConfiguration file was read, but does not initialize the connection on its own anymore. * Separation of concerns - Bootstrap does not take care of connection initialization, the db class will handle it on its own if needed. * Database connection class got setters for options and credentials, it knows the details and can create, sleep and wake up a connection. * Tests do not need to take care of a special db connection backup anymore, mocking / serializing $GLOBALS['TYPO3_DB'] and connection is handled by the class automatically. * eID scripts do not need to call connectDB() anymore: The according method in eid handling is obsolete and developers do not need to think about it anymore. * Simplification of bootstrap cross-dependencies. With the patch only the frontend explicitly calls connectDB(). This cannot be changed by this patch and needs some more thoughts. Exception and logging handling is not fully cleaned up and should be done at a later point. Still, the patch should be fully backward compatible and dbal should work too, if related patch is applied. After mysqli switch, main method connectDB() now handles different port settings correctly and fixes the related issue. Change-Id: Id977228a525dc2c80085ad21c78a7b7d4044160e Resolves: #46880 Related: #46825 Releases: 6.1 Reviewed-on: https://review.typo3.org/19525 Reviewed-by: Markus Klein Tested-by: Markus Klein Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Georg Ringer authored
This hook is needed to render alternative content which is not just a plain image. I am thinking of showing other FAL content like videos, things which need to be embedded as JS, ... Change-Id: Id1f3a21dfbb11fb88fd9384acdd29b445efd4671 Resolves: #46259 Releases: 6.1 Reviewed-on: https://review.typo3.org/18893 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Oliver Hader authored
The TypoScript stripProfile feature not forwarded to ProcessedFile anymore. Example of the feature that has been available in TYPO3 CMS 4.x: 10 = IMAGE 10.file = fileadmin/images/image1.jpg 10.file.stripProfile = 1 The protected method modifyImageMagickStripProfileParameters() does not make any sense anymore since the actual ImageMagick processing has been moved around in TYPO3 CMS 6.0. Fixes: #47145 Releases: 6.0, 6.1 Change-Id: If9a36def32327d3fc610b5f4ebc998bee2babf49 Reviewed-on: https://review.typo3.org/19814 Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
- Apr 13, 2013
-
-
Georg Ringer authored
If having a file in the clipboard and the file gets removed, the wrong exception is caught. Change-Id: I8561465c3ec2577ebfb2b77e481e3c9dd3821958 Fixes: #47189 Releases: 6.1, 6.0 Reviewed-on: https://review.typo3.org/19945 Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Christian Kuhn authored
Change-Id: I1d47f865d8b0b3936269849fc3d835bad92bc0da Reviewed-on: https://review.typo3.org/19939 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I013f17501ee8385f95b2b41f57d4821bc6d0dbd0 Reviewed-on: https://review.typo3.org/19937 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I676e9e5012a8389031167f16f9db7343cc4a7efd Reviewed-on: https://review.typo3.org/19924 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Stefan Neufeind authored
In some places preg_quote() is not used or is used incorrectly. In other places there are preg_quote() calls which had no real function. Change-Id: If201394036d17a68cea41903f849c6c5ea11b069 Releases: 4.5, 4.6, 4.7, 6.0, 6.1 Resolves: #36793 Reviewed-on: https://review.typo3.org/10943 Reviewed-by: Dmitry Dulepov Reviewed-by: Markus Klein Tested-by: Markus Klein Tested-by: Philipp Gampe Reviewed-by: Philipp Gampe Reviewed-by: Jigal van Hemert Tested-by: Jigal van Hemert
-
Christian Kuhn authored
Change-Id: I41cdc0efa698795a64cbf5ad52faa41b8f737b7c Reviewed-on: https://review.typo3.org/19922 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Calling has() in front of get() is inefficient and can be optimized. Change-Id: Id8048023cc2305534a494664b402d47911087db6 Fixes: #47184 Releases: 6.1, 6.0 Reviewed-on: https://review.typo3.org/19911 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Marc Bastian Heinrichs Tested-by: Marc Bastian Heinrichs Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I8b691824ecd02682f2162db851b1d4e91f613556 Reviewed-on: https://review.typo3.org/19915 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Oliver Hader authored
The language cache is not cleared anymore due to wrong condition in the hook method. Change-Id: If549d57580d05a547f8c879eed31a1f72667c661 Related: #46205 Releases: 6.0, 6.1 Reviewed-on: https://review.typo3.org/19910 Reviewed-by: Oliver Hader Tested-by: Oliver Hader
-
Oliver Hader authored
If e.g. enabling/disabling a record in the backend, an additional empty clear cache command is logged, like "User admin has cleared the cache (cacheCmd=)". Change-Id: Ie7b6ee47c9e53c7ba399aada1f738fe700574e89 Fixes: #47181 Releases: 6.0, 6.1 Reviewed-on: https://review.typo3.org/19902 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Oliver Hader authored
The hook to clear the language (l10n) caches is currently called every time any element in the backend is modified. If concurrent actions take place, flushing and regenerating this cache results in an accordant exception like The cache file ".../t3lib_l10n/3e2cbbda0301cf592e5831ef26c56b7b" could not be written. The solution is to only execute this hook if all or the temp. caches shall be cleared Change-Id: Iaf68f50e2f9bfcc3ffce64a0f5267673afd332ad Fixes: #46205 Releases: 4.7, 6.0, 6.1 Reviewed-on: https://review.typo3.org/19898 Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Christian Kuhn authored
Change-Id: Ide9ef837006df37a0cccdc6b90ce73bc0c6ed62f Reviewed-on: https://review.typo3.org/19890 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I6fa79835811097d58545eb8e0be933b0d0e15e35 Reviewed-on: https://review.typo3.org/19883 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
- Apr 12, 2013
-
-
Christian Kuhn authored
Change-Id: I7b5c6ead589293c3470d5d0cc00bf16d1145a8c8 Reviewed-on: https://review.typo3.org/19880 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I44a61647ea3c0398acba840765c84ef1fc6155f8 Reviewed-on: https://review.typo3.org/19877 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Stefan Neufeind authored
If no name is specified, only an email-address, for a sender avoid setting an empty "from"-parameter. Change-Id: I4274fd6d227d56d81b42be549e3780a2a29e06cc Fixes: #44484 Releases: 4.7, 6.0, 6.1 Reviewed-on: https://review.typo3.org/17504 Reviewed-by: Georg Ringer Tested-by: Georg Ringer Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I1ceb64d0233c3418adb9ebaf95c94b8062fb3d51 Reviewed-on: https://review.typo3.org/19873 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Marcus Schwemer authored
Rename BE user TS option options.clearCache.clearRTECache to options.clearCache.clearLangCache to determine whether the language cache clear item should be shown. Fixes: #39103 Releases: 6.1 Change-Id: I701dc9a879de4f3681f3fb441545eaa6b3e08e3e Reviewed-on: https://review.typo3.org/12912 Reviewed-by: Georg Ringer Tested-by: Georg Ringer Reviewed-by: Stefan Neufeind Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Wouter Wolters authored
Non-static method tslib_cObj::enableFields() should not be called statically Change-Id: I93497b24618d29534331ac42d87ec2baec91cad6 Resolves: #38602 Releases: 6.1, 6.0 Reviewed-on: https://review.typo3.org/16751 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Wouter Wolters authored
Non-static method tslib_cObj::getKey() should not be called statically Change-Id: Ic5a8b54db751661a421385bcbccc264e01e958d3 Resolves: #38601 Releases: 6.1, 6.0 Reviewed-on: https://review.typo3.org/16753 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Wouter Wolters authored
Change-Id: I01450bb041e20ddb180e4b4f49c49f11fbda9d75 Resolves: #47170 Releases: 6.1 Reviewed-on: https://review.typo3.org/19867 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Wouter Wolters authored
Non-static method tslib_cObj::calc() should not be called statically Change-Id: I9d6b5ac1c4e97164af8a3ce0eaaa0fe95c4a6860 Resolves: #38600 Releases: 6.1, 6.0 Reviewed-on: https://review.typo3.org/16754 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn Reviewed-by: Stefan Neufeind Reviewed-by: Georg Ringer Tested-by: Georg Ringer
-
Christian Kuhn authored
Change-Id: I660c708f2faf020cee9d3ac35f3391d090a8a8ce Reviewed-on: https://review.typo3.org/19857 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: Ia879d40c451f071b9b3ed22df7c2a8a6665b917a Reviewed-on: https://review.typo3.org/19852 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I8b840819633e7409ed086e3bf3de0b90aee96b1e Related: #47162 Fixes: #47165 Releases: 6.1 Reviewed-on: https://review.typo3.org/19847 Reviewed-by: Markus Goldbeck Tested-by: Markus Goldbeck Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I8117edd90bceb22ba23fd867c888f1429365d319 Reviewed-on: https://review.typo3.org/19846 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Implementations use makeInstance() / getUserObj() for instantiation, so it is save to use the new class without file path. Change-Id: I91562cacf0e828428ff0420bd6bf2302609cb43a Fixes: #47163 Releases: 6.1 Reviewed-on: https://review.typo3.org/19843 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Some mentions of these files were already adapted, the fonts are now moved and last occurences fixed. Change-Id: Ief65a635f2ea7fe274b28838427cb4665e9b0e6d Resolves: #47162 Releases: 6.1 Reviewed-on: https://review.typo3.org/19842 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: If7a3a3c8c9921efef4fb8c8956d5e1d0a0ebfdca Reviewed-on: https://review.typo3.org/19839 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
Change-Id: I7774323581f97bd3562eaa1fa67a5faae748446a Resolves: #47160 Releases: 6.1 Reviewed-on: https://review.typo3.org/19834 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-
Christian Kuhn authored
The patch encapsulates the data submission that can feed DataSubmissionController from index_ts to TypoScriptFrontendController. Change-Id: I3d357f97f77db5e675f4ec446fc3015214e372a2 Resolves: #47158 Related: #47157 Releases: 6.1 Reviewed-on: https://review.typo3.org/19826 Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Thomas Maroschik Tested-by: Thomas Maroschik Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
-