Skip to content
Snippets Groups Projects
  1. Jun 14, 2011
  2. Jun 12, 2011
    • Soren Malling's avatar
      [FEATURE] Move "Appearance" tab before "Access" tab · 31387657
      Soren Malling authored
      The use of settings in the "Appearance" tab are most likely related to
      setting in tabs placed before the "Access" tab.
      
      The "Appearance" should be moved before the "Access" tab to give a
      correct workflow
      
      Change-Id: I1cd6683f11d79e8b5684f06310b4c1649295049a
      Resolves: #27345
      Reviewed-on: http://review.typo3.org/2628
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      31387657
    • Rens Admiraal's avatar
      [FEATURE] Add support for FlexForm file reference · 0627d1bb
      Rens Admiraal authored
      Now t3lib_befunc->getFlexFormDS supports pointers to a file, or to
      a table containing the XML for the datastructure. I'm currently in
      the need of storing a file location in this reference table, which
      is not possible in current method.
      
      My suggestion would be to validate the datastructure field in the
      database to see if it's a file or XML, and handle it depending on
      the outcome. Suggestion for a solution can be found in this changeset.
      
      See the mantis bug report for a test extension to reproduce this.
      
      Change-Id: Iae7b096b3b722dfc9eb2b59da10527e5f8febbf8
      Resolves: #M17532
      Reviewed-on: http://review.typo3.org/1175
      Reviewed-by: Rens Admiraal
      Tested-by: Rens Admiraal
      Reviewed-by: Julian Hofmann
      Reviewed-by: Tolleiv Nietsch
      Reviewed-by: Christian Mueller
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      0627d1bb
    • Stefan Neufeind's avatar
      [FEATURE] t3lib_FlashMessage: separate message-classes from rendering · 82fa070c
      Stefan Neufeind authored
      Separate class-fetching from HTML-rendering.
      
      Change-Id: Ic8994aebaf4c1c22919054b7a6720b51bdcbc4c5
      Resolves: #27367
      Reviewed-on: http://review.typo3.org/2646
      Reviewed-by: Markus Klein
      Reviewed-by: Kay Strobach
      Tested-by: Kay Strobach
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      82fa070c
    • Andreas Wolf's avatar
      [BUGFIX] Toolbar menus have no hover · 2171dcbf
      Andreas Wolf authored
      All toolbar menu items currently have no hover. This patch adds a hover
      to tr and li classes inside these menus.
      
      Original patch by Steffen Kamper.
      
      Change-Id: If6b2ceb6df6977c8b92d1871f115d710107854da
      Resolves: #18397
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/2594
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Kay Strobach
      Tested-by: Kay Strobach
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      2171dcbf
  3. Jun 11, 2011
    • Johannes Feustel's avatar
      [BUGFIX] Handle IDN domain names correctly · 0f6b299e
      Johannes Feustel authored
      Backend fails if using an IDN (international domain name) like täst.org
      
      Change-Id: Iddd0f821bdf61d98f898fd3cdf07b0af83e081d3
      Resolves: #20519
      Releases: 4.6, 4.5
      Reviewed-on: http://review.typo3.org/2528
      Reviewed-by: Georg Ringer
      Reviewed-by: Kay Strobach
      Tested-by: Kay Strobach
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      0f6b299e
  4. Jun 10, 2011
  5. Jun 09, 2011
  6. Jun 08, 2011
    • Susanne Moog's avatar
      [FEATURE] Add option to remove default CSS from extensions · 35534b6f
      Susanne Moog authored
      Currently there is no way to disable the output of the
      default CSS from extensions (_CSS_DEFAULT_STYLE). You
      can only disable it per extension. This change adds
      a config option - removeDefaultCss - which allows to
      disable it globally.
      
      Change-Id: I1bf2566e14b2f50e16ee0ed4b64a29c3acc1f563
      Resolves: #17634
      Reviewed-on: http://review.typo3.org/1810
      Reviewed-by: Markus Klein
      Reviewed-by: Stefan Neufeind
      Tested-by: Markus Klein
      Reviewed-by: Dmitry Dulepov
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      35534b6f
    • Steffen Gebert's avatar
      [FEATURE] Evaluate starttime and stoptime fields as datetime · cd7dbcc9
      Steffen Gebert authored
      As we now can rely on the cache lifetimes of TYPO3's page cache (thanks
      to #20473), we can now safely enable editors to also define start and
      stop times with a precision of a minute, not only per day. Thus evaluate
      the fields as datetime, not only as date.
      
      Change-Id: I1a6a63cc4dd60d51139562979553a4f432ef6642
      Resolves: #27228
      Reviewed-on: http://review.typo3.org/2534
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      cd7dbcc9
    • Thomas Juhnke's avatar
      [FEATURE] Streamline element browser in tree, upload & create folder form · ac41534b
      Thomas Juhnke authored
      This patch makes the element browser more conform in the three parts by
      adding padding to the upload/create folder forms. And move the "display
      thumbnails" checkbox to the top of the right tree navigation (right
      below the bulk actions).
      
      Furthermore, the three parts are visually splitted by a border which
      made it necessary to add new id attributes to the both forms in order
      to make them adressable in the stylesheets.
      
      Resolves #25320
      
      Change-Id: I80211a8ace933fe4c44002a5eeb504bfa3360439
      Reviewed-on: http://review.typo3.org/1165
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      ac41534b
  7. Jun 07, 2011
  8. Jun 06, 2011
    • Rens Admiraal's avatar
      [BUGFIX] Incorrect TYPO3 environment check · b300d170
      Rens Admiraal authored
      class.t3lib_tstemplate.php uses if (is_object($GLOBALS['TSFE'])) to check
      for the frontend environment, this should be if (TYPO3_MODE == 'FE')
      
      This patch already has a +1 on the core list. Made this changeset to get
      it into gerrit.
      
      Change-Id: I57fbbc9258b6db4af20a983791b38087f71ed31d
      Resolves: #M17725
      Reviewed-on: http://review.typo3.org/1174
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      b300d170
    • Georg Ringer's avatar
      [BUGFIX] Wrong stdWrap keys used in fe_login · a44c2b2a
      Georg Ringer authored
      logoutHeader_stdWrap and logoutMessage_stdWrap do exist, but are not
      used.
      
      Change-Id: I8f12b10ec8f4fd0165904a38d7be913b97242a8d
      Resolves: #26758
      Reviewed-on: http://review.typo3.org/2547
      Reviewed-by: Markus Klein
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      a44c2b2a
    • Sven Teuber's avatar
      [BUGFIX] showAccessRestrictedPages doesn't replace links to restricted subpages · 94feeb25
      Sven Teuber authored
      When creating a menu with showAccessRestrictedPages set to any PID, links to pages
      that inherit an access restriction ("include subpages" set on a parent page)
      won't be substituted.
      
      Change-Id: I98ea123ccdf1e370f28103546191b0a7234076f4
      Resolves: #15984
      Reviewed-on: http://review.typo3.org/1186
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Christian Mueller
      Reviewed-by: Georg Ringer
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      94feeb25
    • Patrick Schriner's avatar
      [BUGFIX] phpTimeZone not correctly set from localconf.php · e221a633
      Patrick Schriner authored
      There's a bug in the PHP time zone implementation - set in
      t3lib/config_default.php and overridden in localconf.php.
      
      The timeZone variable used to set the default timezone takes the value
      from TYPO3_CONF_VARS[phpTimeZone], which does not exist. It needs to be
      corrected to TYPO3_CONF_VARS[SYS][phpTimeZone].
      
      The effect is that the time zone for TYPO3 is always set to the server
      time zone and is not set by the localconf.php / Install Tool value of
      phpTimeZone.
      
      This looks like it may have been an issue since phpTimeZone was added.
      
      Thanks to Todd Hossack for the patch
      
      Resolves: #26779
      Releases: 4.6, 4.5
      Change-Id: I599e06c63747a089aefebc4d5745452383dfd8af
      Reviewed-on: http://review.typo3.org/2301
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      e221a633
    • Markus Klein's avatar
      [BUGFIX] pageNotFound_handling error with relative paths · 9ac4d955
      Markus Klein authored
      This patch fixes the handling of relative paths of pageNotFound_handling.
      Due to a missing check, the relative path is prefixed with http_host only,
      causing a wrong Location header.
      
      Change-Id: I664250d34b05a26bdaf1e2a839027b80c1e4f607
      Resolves: #25725
      Releases: 4.6, 4.5, 4.4
      Reviewed-on: http://review.typo3.org/1712
      Reviewed-by: Kurt Kunig
      Tested-by: Kurt Kunig
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      9ac4d955
    • Benjamin Mack's avatar
      [FEATURE] Capitalizing with stdWrap (TypoScript) · 5fc6772f
      Benjamin Mack authored
      Add another stdWrap case option "capitalize"
      
      Change-Id: I05e4c8850a80b302a9789415e4fe15a3127692b4
      Resolves: #17896
      Reviewed-on: http://review.typo3.org/2381
      Reviewed-by: Fabien Udriot
      Tested-by: Fabien Udriot
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Andy Grunwald
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      5fc6772f
    • Steffen Gebert's avatar
      [BUGFIX][INSTALL] Selecting existing database should check radio button · 915a1bec
      Steffen Gebert authored
      Due to a JavaScript error the corresponding radio button in Step 2 of
      the 1-2-3 wizard is not automatically checked, when the dropdown menu
      to select an existing database changes.
      
      Change-Id: Idc7c65a268bd7dd67004a88a4c49457f11c022de
      Resolves: #11765
      Reviewed-on: http://review.typo3.org/2505
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      915a1bec
    • Kai Vogel's avatar
      [BUGFIX] Flexform sheet description should be editable via TSConfig · 8cf5c20a
      Kai Vogel authored
      Flexform sheet description, short description and language meta settings are now editable via TSConfig.
      
      Change-Id: Ib60c96eb74494444aff14a80d677e52895102f84
      Resolves: #26771
      Reviewed-on: http://review.typo3.org/2086
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      8cf5c20a
    • Bjoern Pedersen's avatar
      [TASK] Cleanup of includes · 62ce9412
      Bjoern Pedersen authored
      * Some spaces where missing
      * The session handling had been buried inside the
      update classes.
      
      Change-Id: I73fe6f24bc6dae1fb926259acae07984f92cb9c2
      Resolves: #27235
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/2537
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      62ce9412
  9. Jun 05, 2011
    • Thorsten Kahler's avatar
      [BUGFIX] TCEFORM language selector: wrong relations · 45a6de10
      Thorsten Kahler authored
      The language selector in the top of BE forms is intended to show (and
      switch between) all translations of a certain record. All records in
      non-default languages, that are not bound to a record in the default
      language are shown as translations of each other.
      The patch adds a distinction between translated records and records in
      a non-default language to render the dropdowns labels and functions.
      Additionally fixes PHPDoc and indentation of SC_alt_doc::languageSwitch().
      
      Change-Id: Iec7ee3dffbeab2e1fce45cd96c17ceffcc75f7aa
      Resolves: #24958
      Reviewed-on: http://review.typo3.org/1141
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      45a6de10
    • Francois Suter's avatar
      [BUGFIX] Detect Android systems properly · 626e4286
      Francois Suter authored
      Android system is not properly detected by
      t3lib_utility_Client::getBrowserInfo() because it currently detects
      Android devices as variants of a Linux system. However some browsers
      don't send "Linux" in the User-Agent, so Android does not get detected
      at all. This patch moves Android detection outside of the Linux
      detection block. It also comes before Linux detection, so that
      Android devices don't get rolled up into Linux computers.
      
      Change-Id: I0d870a0b8e7a00bce0dbbf964338f1e83ca821cc
      Resolves: #26734
      Releases: 4.6, 4.5
      Reviewed-on: http://review.typo3.org/2000
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Fedir RYKHTIK
      Tested-by: Fedir RYKHTIK
      Reviewed-by: Georg Ringer
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      626e4286
    • Oliver Hader's avatar
      [TASK] Overwork NEWS.txt for TYPO3 4.6 · 170b8c25
      Oliver Hader authored
      Cleanup the NEWS.txt for TYPO3 4.6 and add accordant information.
      
      Change-Id: I2f4bd78feaf2e29e064562f7a9181a081ae9e39c
      Reviewed-on: http://review.typo3.org/2071
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      170b8c25
  10. Jun 04, 2011
    • Steffen Müller's avatar
      [FEATURE][CONF] Starttime/endtime is not taken into account when caching · c759bf21
      Steffen Müller authored
      If a content element has a starttime/endtime or a tt_news item has such
      dates, they are not taken into account when cached.
      
      This change adds an automatism for tt_content records. Records in other
      tables can be defined as tablename:pid in TypoScript, to be taken into
      account while calculating the page's cache lifetime.
      
      Change-Id: I75479d193772905093f53fcd24299df849478fba
      Resolves: #20473
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/2393
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      c759bf21
    • Stefan Neufeind's avatar
      [BUGFIX] sysext recycler: Typo in language label · 63e87f4a
      Stefan Neufeind authored
      Replaced "Create" with "Created". Date refers to when the record was "created".
      
      Change-Id: I68d991af19acbb87a132cb2706841e4f4cbb6a51
      Resolves: #5539
      Releases: 4.4, 4.5, 4.6
      Reviewed-on: http://review.typo3.org/2522
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      63e87f4a
    • Markus Klein's avatar
      [FEATURE] Make table labels for import static clickable · 0f51999e
      Markus Klein authored
      An extension that provides static data shows up in the extension manager
      with a list of checkboxes for each table to import.
      The table names are not clickable, one has to target the tiny checkbox.
      
      This fix adds the missing <label> tags around the table names.
      
      Thanks to Christian Weiske for providing this patch.
      
      Change-Id: Icba748674a854cb3bda032cdfc797c4ad5584639
      Resolves: #26926
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/2322
      Reviewed-by: Christian Weiske
      Tested-by: Christian Weiske
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      0f51999e
    • Mario Rimann's avatar
      [BUGFIX][DB] Fixed pages_language_overlay DB definition · 2ed41e21
      Mario Rimann authored
      This is to make the media field of the pages_language_overlay
      table behave the same as the media field in the pages table (TCA for both
      are identical)
      
      Change-Id: I05298e8429384da7af6ffdef78587198532030f0
      Resolves: #26142
      Reviewed-on: http://review.typo3.org/2513
      Reviewed-by: Björn Pedersen
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      2ed41e21
    • Mario Rimann's avatar
      [BUGFIX] Fixed typo in TBE_browser_recordList · 5d5f7da7
      Mario Rimann authored
      Change-Id: I317234a5d90d41785f9f9338459fc39a64e85663
      Resolves: #26360
      Reviewed-on: http://review.typo3.org/2512
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      5d5f7da7