- Jun 05, 2015
-
-
Frank Nägler authored
With the new login screen (introduced in 7.2) the possibility to override or extend the login template was removed. The old globals ``$GLOBALS['TBE_STYLES']['htmlTemplates']`` was removed without replacement. With this patch we introduce a new way to extend the login form and add a BE login form API. Resolves: #66669 Releases: master Change-Id: I36ab4cdabbab55f370d1fd19b7212cf2f858db57 Reviewed-on: http://review.typo3.org/39234 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jun 04, 2015
-
-
Wouter Wolters authored
This fixes a bug where the property mapper was unable to find a valid typeconverter for properties annotated with int or bool. Resolves: #67044 Releases: master,6.2 Change-Id: Ie15b6d83e70c5857a09f1d8baa21c168924d63b4 Reviewed-on: http://review.typo3.org/39628 Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Christian Kuhn authored
For details, see the ReST files with examples for new API and TCA changes. * Split TCA config "type" to "type" and "renderType": TCA config "type" is a technical debt since it both defines the database storage as well as the widget that is used to render a certain field in FormEngine. While "type" is kept, the render widget is now extracted to a "renderType". * t3editor uses this "renderType" now. type=text with renderType=t3editor will call the new T3editorElement provided by ext:t3editor, and falls back to TextElement if t3editor is not loaded. * t3editor is now enabled for "setup" and "constants" of sys_template records if opening the whole record. * t3editor now works when configured in a flex form. * Introduce an API in FormEngine NodeFactory to register new renderType, used by t3editor. * Introduce a resolver API in FormEngine NodeFactory to change the class that renders a widget or container. * Split TextElement into TextElement that only renders a textarea and RichTextElement provided by ext:rtehtmlarea that renders RTE. ext:rtehtmlarea uses the new resolver API to route rendering to its own class in case RTE is enabled and configured for a field. * In TCA section "types" a new array "columnsOverrides" is introduced that allows overwriting some column configurations of fields. Currently, this works for some View/FormEngine related settings like renderType and defaultExtras. * TCA Migration is introduced to dynamically rewrite TCA before it is put into cache. * TCA migration is called a second time in ext:compatibility6 in case TCA is still registered via ext_tables.php. This has performance penalty since it is done on every frontend and backend call. * TCA migration is also called dynamically for flex form definitions. * TCA migration moves configured t3editor wizards to type=text with renderType=t3editor. * TCA migration removes the 5th parameter "style pointer" from types showitem * TCA migration moves the 4th showitem parameter "extra configuration" to "defaultExtras" of "columnsOverrides" of given TCA type. Change-Id: Ia2c2bc16463a01021c7a6be765b4efa872a130fd Resolves: #67229 Releases: master Reviewed-on: http://review.typo3.org/39662 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
- Jun 03, 2015
-
-
Andy Grunwald authored
According to the "Pre-Merge-Tests" for TYPO3 (Gerrit -> Travis CI) it make sense to add the Travis CI Build badge to the README. It is not a big feature, but a nice small addition for the TYPO3-Syncs from git.typo3.org to github like: * https://github.com/TYPO3/TYPO3.CMS * https://github.com/typo3-ci/TYPO3.CMS-pre-merge-tests Furthermore this a small task at the road to get Pre-Merge-Tests ready. Change-Id: I2d4402a5253deef7bcfb62e3d42454ba84ccc04b Resolves: #67287 Releases: master Reviewed-on: http://review.typo3.org/39939 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de>
-
Wouter Wolters authored
This is not implemented in the caching framework and needs to be cleared manually. Resolves: #67275 Releases: master,6.2 Change-Id: I05f4fb96eedff1002b843ef51b184bbd50493290 Reviewed-on: http://review.typo3.org/39916 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Michael Oehlhof authored
- add missing return values - declare missing class variables - remove unused variable assingments - add getter for LanguageService - add getter for BackendUser Resolves: #65497 Releases: master Change-Id: If6303319811e8c5c0979403c4399f8aa19459eb8 Reviewed-on: http://review.typo3.org/37512 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Helmut Hummel authored
Deprecate renderMode in favor of a flexible deferred rendering of flash messages in the Fluid template. This means that flash messages should no longer contain HTML tags but only plain text, if rendered by the default rendering. The rendered output will by default now be a <ul> list. The usage of renderMode in the Core is removed and styles are adapted to match the previous output. The core is adapted to now use htmlspecialchars in a controller context for user input. Encoding is now taken care of during rendering of the Fluid template. Resolves: #63453 Releases: master Change-Id: Ie02d2e1441ca2b3c7c159ffa917f7040f50327b5 Reviewed-on: http://review.typo3.org/34818 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Stephan Großberndt authored
Use the correct case 'SimpleXMLElement' instead of 'SimpleXmlElement' when loading locallang.xml and remove backslashes for options. Resolves: #67242 Related: #67234 Releases: master Change-Id: Ia1234b7887396e1b848e6e74f0453ad5c8035e0c Reviewed-on: http://review.typo3.org/39896 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Markus Klein authored
The changes made in #57824 cause the replace functionality to fail. Resolves: #67259 Releases: master, 6.2 Change-Id: If0d5773f2905bdae50ab7aa607c01422d18e7f81 Reviewed-on: http://review.typo3.org/39910 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
rengaw83 <rengaw83@gmx.de> Reviewed-by:
Alexander Opitz <opitz.alexander@googlemail.com> Tested-by:
Alexander Opitz <opitz.alexander@googlemail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Wouter Wolters authored
Resolves: #67251 Releases: master Change-Id: I75dcc244eb3a1abd9d33f04421523b548283b7c1 Reviewed-on: http://review.typo3.org/39903 Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Frank Nägler authored
The patch fix problems with multiple parenthesis. e.g. uid_foreign,tablenames(255),fieldname(255),sorting_foreign Resolves: #66738 Releases: master Change-Id: I49abc597e9c325a22d49c3d76355ecadec30a35d Reviewed-on: http://review.typo3.org/39786 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- Jun 02, 2015
-
-
Alina Fleser authored
Verification of parent element ($element) type before PageRepository::getFileReferences() call in FilesContentObject::handleFileReferences to avoid PHP error in case of null value Resolves: #64239 Resolves: #62616 Releases: master, 6.2 Change-Id: I8b89710af97eb37eee9518392e89ddeceb5b9f57 Reviewed-on: http://review.typo3.org/36480 Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Alexander Opitz <opitz.alexander@googlemail.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Frank Nägler authored
This patch fixes the "Import Selection" link in the element browser. Resolves: #47322 Releases: master, 6.2 Change-Id: Ic9b7ed37f0bd25d47e6b97036e1244b97b218f3b Reviewed-on: http://review.typo3.org/39744 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
Resolves: #67250 Releases: master Change-Id: If9868831bd4ef6bffa0e34e532769a384ea2511b Reviewed-on: http://review.typo3.org/39902 Reviewed-by:
Frans Saris <franssaris@gmail.com> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Tested-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
- Jun 01, 2015
-
-
Mathias Brodala authored
This makes use of the destPrefix option to set the target base path only once. Also drop the leading slash from source path which is unnecessary. Resolves: #67226 Releases: master Change-Id: I9d4b19479075a36fd8a7bbab1d65a4e1ce8bcb06 Reviewed-on: http://review.typo3.org/39866 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Andreas Allacher authored
In order to include ViewHelper namespaces with xmlns:*-attributes it is currently required to use e.g. a HTML tag to allow code-completion by an IDE. The tag itself will also be rendered. To avoid rending the tag, workarounds are necessary. One is to use sections, but this approach is counter-intuitive and has rendering overhead due to extra sections being used. Additionally it is not possible to use this workaround in layouts. This patch introduces new functionality to remove all xmlns-attributes which match ViewHelper namespaces. For HTML output, we introduce a new attribute, which will cause Fluid to remove the HTML-tag as well. The attributes is called >data-namespace-typo3-fluid="true"< Change-Id: I709d17da86cd79b7b3ba5c83b3f2bd6df8e2bd98 Releases: master Resolves: #66269 Reviewed-on: http://review.typo3.org/38472 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Daniel Schmidt <daniel@netz-basis.com> Tested-by:
Daniel Schmidt <daniel@netz-basis.com> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Sascha Egerer authored
In the TYPO3\CMS\Core\Resource\File object the logic to load metaDataProperties was implemented at multiple places but there is also a method _getMetaData() that handles this logic. The method _getMetaData() should be used instead of duplicating the logic at multiple places. Additionally some code is removed, which checks the metaDataProperties member for NULL values, which can never be the case. Resolves: #66878 Releases: master Change-Id: I01939a66aa58629f2c6dc08656647375460cc4e9 Reviewed-on: http://review.typo3.org/39429 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Tested-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Andreas Fernandez authored
Restructure the nested condition for the sake of readability. Releases: master, 6.2 Resolves: #67224 Change-Id: I25161348509245dee56b61f3a1f15d9bc778500b Reviewed-on: http://review.typo3.org/39863 Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Peter Niederlag authored
The workspace preview adds the GET parameter ADMCMD_noBeUser when requesting the frame for live preview. $GLOBALS[BE_USER] is unset in index_ts.php when seeing ADMCMD_noBeUser. In TypoScriptFrontendController fePreview=2 must not be set when ADMCMD_noBeUser parameter is present to prevent fatal errors on calling methods on a non-existent $GLOBALS[BE_USER] Releases: master, 6.2 Resolves: #30643 Change-Id: Idff7febcaaa8b87bd65a993b1860ad378e09b22f Reviewed-on: http://review.typo3.org/27834 Reviewed-by:
Lorenz Ulrich <lorenz.ulrich@visol.ch> Tested-by:
Lorenz Ulrich <lorenz.ulrich@visol.ch> Reviewed-by:
Markus Bucher <markusbucher@gmx.de> Tested-by:
Markus Bucher <markusbucher@gmx.de> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Andreas Fernandez authored
It wasn't possible to remove the search term used in the search in the Page and List module below the docheader, because it was checked for an empty submit button. The checks are removed now. Resolves: #66552 Releases: master Change-Id: I7113f5a00903326f9d12ee06b3510a376ff0f772 Reviewed-on: http://review.typo3.org/39743 Reviewed-by:
Philipp Gampe <philipp.gampe@typo3.org> Tested-by:
Philipp Gampe <philipp.gampe@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
- May 30, 2015
-
-
Frans Saris authored
When a processed file already exists but the sys_file_processedfile record is deleted the whole processing task is executed again even if the file already exists. This change first checks if `targetFile` already exists and if so uses that file and marks the task as done. Currently this only works for `Local` file storages as the FAL API misses proper methods get a file by folder identifier and file name. When https://review.typo3.org/38479/ is merged a follow up is needed for master #67126. Resolves: #67095 Releases: master Change-Id: I352428ddaf1d2afe4bbf031992b484ade3635e4a Reviewed-on: http://review.typo3.org/39709 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Frank Nägler authored
Resolves: #67213 Releases: master Change-Id: I8ed7802f4e4e3d95ecb946231d11b46956ea4477 Reviewed-on: http://review.typo3.org/39835 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Frank Nägler authored
This patch remove the usage of self::class and make use of __CLASS__ in context of methods like makeInstance. As array key, we use the full qualified namespace followed by ::class. Resolves: #67211 Releases: master Change-Id: I60e5b33313a19cdef4705b04af892916923cc97c Reviewed-on: http://review.typo3.org/39825 Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Frans Saris authored
Due to multiple reasons (for instance target folder is not writable) the processing of a file can fail. This change prevents wrong data being saved in sys_file_processedfile when processing failed. Resolves: #67094 Releases: master, 6.2 Change-Id: I6051d503ba74629dc6493b7bac9f28bf320aeb66 Reviewed-on: http://review.typo3.org/39696 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Helmut Hummel authored
With #65528 t3skin was made a protected extension, but it was forgotten to add the extension to the class loading information array in composer.json Do this now, so that composer class loading is active for all protected core extensions. Releases: master Resolves: #67207 Change-Id: I9138d84f715c4e372763a5f17ef40f2a176cae10 Reviewed-on: http://review.typo3.org/39817 Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- May 29, 2015
-
-
Daniel Goerz authored
The option showLogoutFormAfterLogin in the FeLogin FlexForm actually disables all redirect configuration on login. This patch reflects that behavior by adjusting its label to better describe what it actually does. Since the redirect is turned off if showLogoutFormAfterLogin is set the FrontendLoginController is also prevented from gathering redirect URLs in the first place. Change-Id: I0be9d166e67dd055d6057e841d9fd5509ed1e8a7 Resolves: #67115 Releases: master Reviewed-on: http://review.typo3.org/39671 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Francois Suter authored
Since the refactoring of typolink, one wrong parameter is passed to registered linkhandler hooks. This patch restores the right parameter. Resolves: #67199 Releases: master Change-Id: I781c00abc015cc38c0c51fbb84d5063b887c72cc Reviewed-on: http://review.typo3.org/39797 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org> Reviewed-by:
Benjamin Mack <benni@typo3.org>
-
Frans Saris authored
In old situation the full path to of the folder was shown. With #64759 only the accessible part is shown. The logic to determine what the root is of the 'current' filemount is not suitable for this and will always return the root path of the first filemount within the storage. This could result in a wrong root identifier. This patch fixes the output of the readable path to the full path by using the real storage root instead of the storage root defined by the filemount. Resolves: #67148 Related: #64759 Releases: master, 6.2 Change-Id: Ie00fa2dc7d3833f798c5a2913bb9674b2b15b6e7 Reviewed-on: http://review.typo3.org/39767 Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Markus Klein authored
Resolves: #67071 Releases: master, 6.2 Change-Id: I1320833f0f7cfd852ca8ba458fa9367cb3b16ea0 Reviewed-on: http://review.typo3.org/39656 Reviewed-by:
Alexander Opitz <opitz.alexander@googlemail.com> Tested-by:
Alexander Opitz <opitz.alexander@googlemail.com> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Alexander Opitz authored
With PHP 7 the string 0x0 isn't any longer a numeric, so the test fails. But the test itself makes no sense and is removed. Resolves: #65320 Releases: master, 6.2 Change-Id: Id7569dfb859ecee7c85c595640515781b1423614 Reviewed-on: http://review.typo3.org/39745 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- May 28, 2015
-
-
Christian Kuhn authored
Method isEnabled() always returns TRUE since the checked property is protected and never reset to something else. It is unlikely that an extending class changes this method. isEnabled() is deprecated now. Resolves: #67171 Releases: master Change-Id: Ia23163a3d36f797ea9e776663057592ce12f6a1f Reviewed-on: http://review.typo3.org/39762 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
- May 27, 2015
-
-
Frank Nägler authored
Resolves: #67159 Releases: master Change-Id: Ia17a3a52914b7acaab47b0d1bb84395a7d3fa917 Reviewed-on: http://review.typo3.org/39760 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Andreas Fernandez authored
Re-add the "select all" toggle to select all records on a page. The action buttons are moved to the right to match the common style of the backend. Resolves: #66941 Releases: master Change-Id: I17cf35bcc9a0c48a4df26d9c0753a80a07a11f83 Reviewed-on: http://review.typo3.org/39742 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Morton Jonuschat authored
This is a follow up fix for #66801 which hides too many users as an underscore (_) is a wildcard for a single char in SQL LIKE queries. It also ensures proper quoting of the string value to be compatible with databases that enforce proper query syntax. Resolves: #67154 Resolves: #67093 Related: #66801 Releases: master Change-Id: If0b78cd4e66c3420c832ad98aa5717034f619639 Reviewed-on: http://review.typo3.org/39754 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co>
-
- May 26, 2015
-
-
Andreas Fernandez authored
Extend the exception message to hint to the action of the controller that misses a required argument. Resolves: #67139 Releases: master, 6.2 Change-Id: I70a256d73545ad90852fd1165f2fde127ac12441 Reviewed-on: http://review.typo3.org/39737 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Markus Klein authored
The change #24250 introduced a strict comparison without ensuring proper data types on both sides of the comparison. Add the missing int-cast in \TYPO3\CMS\Backend\Tree\Pagetree\Commands Resolves: #67138 Releases: master,6.2 Change-Id: I51dc33fd64a6d42963237ac49e0385c2abf66b71 Reviewed-on: http://review.typo3.org/39727 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- May 25, 2015
-
-
Markus Klein authored
The issue #58701 introduced the functionality to fetch suggestions defined in composer.json or ext_emconf.php into the Package class. A copy and paste error causes the loading of the suggestions to actually fail, so those never reach the DependencyResolver. This patch fixes the tiny mistake and thus ensures that suggestions really influence the loading order of extensions. Resolves: #51069 Releases: master, 6.2 Change-Id: Ib12e7f91f49c0b2bda56fdb4394a604e322b741c Reviewed-on: http://review.typo3.org/39692 Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org>
-
Morton Jonuschat authored
Without calling initialize() on the DatabaseConnection object the DBAL the resulting connection configuration will default to the "native" driver type (MySQL) which results in an error as there is no MySQL server to contact with the given connection parameters. Resolves: #67066 Releases: master, 6.2 Change-Id: Id5d70a122dcca806ee1122cecacad0c8aef27547 Reviewed-on: http://review.typo3.org/39636 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- May 24, 2015
-
-
Markus Klein authored
Calling the addTypoScript() method with last parameter set to 'defaultContentRendering' must not add the TypoScript twice. Resolves: #67116 Releases: master, 6.2 Change-Id: I3161c62ac0ab25369fabc3f8163e5d92356aa0ca Reviewed-on: http://review.typo3.org/39680 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de>
-
- May 22, 2015
-
-
Christian Kuhn authored
* Extract the AccessibleProxy to an own file to get rid of an evil eval() and make the class smarter for IDE's * Greenify as much as possible for PhpStorm Change-Id: I851e5e9832633bf2308e50d9d8bce13f6657119d Resolves: #67113 Releases: master Reviewed-on: http://review.typo3.org/39665 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-