Skip to content
Snippets Groups Projects
  1. Aug 19, 2012
    • Christian Kuhn's avatar
      [TASK] Execute only Unit tests in UnitTests.xml · 6b395f91
      Christian Kuhn authored
      Functional tests are not executed in this suite.
      
      Change-Id: Iac470a2bf1196e9dc593cab4351495d541467a88
      Related: #39965
      Related: #39964
      Reviewed-on: http://review.typo3.org/13927
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      6b395f91
    • Christian Kuhn's avatar
      [TASK] Raise submodule pointer · f6668266
      Christian Kuhn authored
      Change-Id: Ibb8bb0ebfb0ec17a4468a577119c0d0ca4f73ece
      Reviewed-on: http://review.typo3.org/13917
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      f6668266
    • Helmut Hummel's avatar
      [TASK] Execute Extbase and Fluid tests on travis · 9574e046
      Helmut Hummel authored
      Until now no tests from system extensions are executed
      on travis ci.
      
      Add a phpunit configuration file and add Extbase and Fluid
      tests as test suites. Be aware that travis currently uses
      the current submodule pointer and does not check out master
      of submodules.
      
      Resolves: #39954
      Releases: 6.0
      Change-Id: I949a65b0f1628fdfa4515e3fb4536517430dccac
      Reviewed-on: http://review.typo3.org/13912
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      9574e046
    • Oliver Hader's avatar
      [BUGFIX] Wrong nested extension configuration handling · cae6c987
      Oliver Hader authored
      Nested default configurations and specific system configuration
      of an extension are not merged correctly. This affects reading
      configuration properties and persisting them.
      
      Change-Id: I3a68a5acfb380236e644dd42de78619cc2e605a1
      Fixes: #39952
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13911
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      cae6c987
    • Oliver Hader's avatar
      [FEATURE] Add possibility to flatten array · c4588381
      Oliver Hader authored
      A commonly used task in TYPO3 is to convert and work with
      several types of arrays. This change allows to flatten a
      nested multidimensional array to a flat key-value array.
      
      array('first.' => array('second' => 1))
      will become
      array('first.second' => 1)
      
      Change-Id: Ia41c53b87ac984bb6b29741ce461e4af70b6215f
      Resolves: #39951
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13910
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      c4588381
    • Susanne Moog's avatar
      [BUGFIX] Error occurred while call updateExtensionListFromTerAction · 695bba84
      Susanne Moog authored
      The argument forceUpdateCheck is optional and is just set if
      a user actively clicks on the update link. As it is set to
      required in the code the automatic update fails as it does not
      set the argument.
      
      Change-Id: I27be68656faa4ac0c40bdc395915a9f6ecd7744f
      Fixes: #39946
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13908
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      695bba84
    • Soren Malling's avatar
      [FEATURE] UI changes to "Page" module · 8dc5c37d
      Soren Malling authored
      This patch covers the following changes
      
       * Move default column layout to a backend_layout configuration (#39603)
       * Change the db_layout code, to use the default backend_layout (#39603)
       * Make UI changes to the columns rendering (#38013)
      
      The move of default column layout to a backend_layout
      is in order to ease the styling.
      
      Change-Id: Idc888f910f5e6b86d86d15ee0cb8acd5417e9bb9
      Fixes: #38013
      Fixes: #39603
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13510
      Reviewed-by: Stefan Neufeind
      Tested-by: Philipp Gampe
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      8dc5c37d
    • Helmut Hummel's avatar
      [TASK] Cleanup pageRenderer USER_INT handling · 3f58e9a5
      Helmut Hummel authored
      Change-Id: Ib02fffa1d02553d84d2f6e8fcad78b3eeea2836b
      Resolves: #39950
      Relates: #22273
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13907
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      3f58e9a5
    • Helmut Hummel's avatar
      [BUGFIX] Do not fetch extension list on every request · 6e055698
      Helmut Hummel authored
      Due to comparing a DateTime object with an integer
      the extension list is fetched every time when switching
      to the get extensions tab in the extension manager.
      
      Convert the DateTime object to a timestamp first and
      add a test which ensure this works.
      
      Additionally clean up the doc comment of that
      property in the model and use forceUpdateCheck
      as action parameter in the controller.
      
      Change-Id: I71f6599a6fa41115515c1764deb26e8e56762f4f
      Resolves: #39944
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13905
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      6e055698
    • Helmut Hummel's avatar
      [BUGIX] Fix SQL Injection possibility in Extensionmanager · 6319d053
      Helmut Hummel authored
      Quote the search string in findByTitleOrAuthorNameOrExtensionKey method.
      
      Change-Id: Ifd2694a91d580e303fa366077f1f316864f974e3
      Fixes: #39942
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13904
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      6319d053
    • Georg Ringer's avatar
      [FEATURE] Function for correct item label in BE · c2d437e0
      Georg Ringer authored
      The function t3lib_befunc::getLabelFromItemList() gets you the label of
      a tca field in the BE. This works nicely but ignores changes done with
      TsConfig with code like
      TCEFORM.<table>.<field>.addItems.<key> = New value or
      TCEFORM.<table>.<field>.aldLabels.<ke> = Change me
      
      The new function will handle it all
      
      Change-Id: Ifd99d321943d72ecb4e16c4974aaa8cddf481b2f
      Resolves: #39327
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13098
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      c2d437e0
  2. Aug 18, 2012
    • Susanne Moog's avatar
      [BUGFIX] sys_template: Can't save "basedOn" configuration · 33d136ae
      Susanne Moog authored
      Since the merge of the resources-removal
      TypoScript templates can't save "basedOn"
      changes because of a SQL error, as the
      resources field is still referenced by
      the tca and ext_tables.php.
      
      Change-Id: I548af5a41375b69563c3822a7c8b96687bdf9487
      Fixes: #39937
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13903
      Reviewed-by: Philipp Gampe
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      33d136ae
    • Stefan Neufeind's avatar
      [FEATURE] Scheduler: Allow execution using "at"-daemon · 1ea6e11f
      Stefan Neufeind authored
      Add possibility to execute scheduler via "at"-daemon instead of via cron.
      This allows the scheduler more flexibility when to be invoked next.
      
      This can be useful in environments where no cronjob can be set easily,
      but access to at daemon is possible.
      
      Change-Id: Ib450e59d76e23eb2eeb1ab4769f49d8ba8bd96b5
      Resolves: #34227
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/9177
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      1ea6e11f
    • Sebastian Michaelsen's avatar
      [FEATURE] Allow .ts file extension for static typoscript templates · f60f1209
      Sebastian Michaelsen authored
      At the moment the following static typoscript filenames are allowed:
      
      setup.txt
      constants.txt
      include_static.txt
      include_static_files.txt
      
      * Allow ".ts" as file extensions
      * Allow mixed usage of .ts and .txt
      * .ts precedes .txt
      
      Change-Id: I0ffd9ef50a07dfbaa8388d525c5ced09d5070103
      Fixes: #34922
      Releases: 4.8
      Reviewed-on: http://review.typo3.org/9736
      Reviewed-by: Philipp Gampe
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Simon Schaufelberger
      Tested-by: Simon Schaufelberger
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      f60f1209
    • Susanne Moog's avatar
      [TASK] Update extension configuration of saltedpasswords · e321a05c
      Susanne Moog authored
      Saltedpasswords is using user functions in the ext_conf_template which
      use type hinting for the config object. As the new extension manager
      handles the rendering of the configuration form differently, the type
      hints have to be removed.
      
      Change-Id: I00abd45523ca833799bb3101cdc8262e977750a1
      Resolves: #39935
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13901
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      e321a05c
    • Philipp Gampe's avatar
      [FEATURE] Trigger execution of a specific task from CLI · 99b0eea5
      Philipp Gampe authored
      Make it possible run a specific task by providing an additional
      parameter -i and the uid of the task on the command line.
      
      ./typo3/cli_dispatch.phpsh scheduler -i <uid>
      
      Use the parameter -f to force the execution even if the task is
      disabled or no execution is scheduled.
      
      Change-Id: I6226ea41fbb391a56f9eee3d3de919cc116157bc
      Resolves: #31073
      Relates: #38506
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/12481
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      99b0eea5
    • Ingo Renner's avatar
      [FEATURE] Allow ext_icon.png as extension icon besides ext_icon.gif · a1d5aab1
      Ingo Renner authored
      Follow-Up to #37595
      
      Fixes two things found during the review. Due to an unfortunate
      timely intersection the original patch set was merged without
      these fixes.
      
      Change-Id: Ic9c69f09c1e92c628cd29c5c303e1807022a2a8e
      Fixes: #37595
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13898
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Ingo Renner
      Tested-by: Ingo Renner
      a1d5aab1
    • Christian Kuhn's avatar
      [TASK] Rename table cache_extensions · 93f92990
      Christian Kuhn authored
      Table cache_extensions is handled by ext:extensionmanager and should be
      moved to its namespace. It is now in line with the according extbase
      model and called tx_extensionmanager_domain_model_extension.
      
      Change-Id: I9d8e0981bf5ff35c38c3254672b8b8015c72ff47
      Resolves: #39922
      Related: #39726
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13884
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      93f92990
    • Johannes Feustel's avatar
      [FEATURE] Allow ext_icon.png as extension icon besides ext_icon.gif · 3358716a
      Johannes Feustel authored
      Search for ext_icon.png and ext_icon.gif and store to
      $GLOBALS['TYPO3_LOADED_EXT'][$_EXTKEY]['ext_icon']
      
      Change-Id: I4867ba9c46b3c9d1674d91313599b2aada5e9295
      Resolves: #37595
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13888
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      3358716a
    • Helmut Hummel's avatar
      [BUGFIX] Make PageRenderer work with USER_INT plugins · 41f215f0
      Helmut Hummel authored
      Currently the PageRenderer renders all the page content before
      USER_INT plugins are substituted in the cached output.
      This leads to the situation, that adding header or footer data using
      the PageRenderer does not work for USER_INT plugins.
      
      If you for example try to use tt_content.media.20 in a
      USER_INT plugin, the JS library and the inline JS, is not
      included.
      
      This change solves the problem, by adding the header and footer data
      of the PageRenderer during USER_INT processing.
      
      Resolves: #22273
      Releases: 6.0
      Change-Id: I97609684ccacdab1bd0853b9ccd6608716706f87
      Reviewed-on: http://review.typo3.org/7465
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      41f215f0
    • Georg Ringer's avatar
      [BUGFIX] Fix wrong path in EXT:cms/ext_autoload.php · 10e59607
      Georg Ringer authored
      One path is wrong in ext_autoload and should be fixed
      
      Change-Id: I8a84ed8bec8f877dee491127c43ffa5ca0bc3757
      Fixes: #37478
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13837
      Reviewed-by: Wouter Wolters
      Reviewed-by: Ingo Renner
      Tested-by: Ingo Renner
      10e59607
    • Dominique Feyer's avatar
      [FEATURE] Support custom width in TCA tree · c15120c6
      Dominique Feyer authored
      Introduce setting ['config']['treeConfig']['appearance']['width']
      to apply custom width for TCA select fields that use the tce tree.
      
      Change-Id: I757745e51f650c20f23e60aa6c4a9b7b0fca6b99
      Releases: 6.0
      Resolves: #39046
      Reviewed-on: http://review.typo3.org/12860
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      c15120c6
    • Helmut Hummel's avatar
      [TASK] Require PHP setting register_globals set to Off · d0dc3f19
      Helmut Hummel authored
      Die early in the bootstrap if register_globals is On.
      
      Change-Id: Icd2541447c190db7f1a6d01cd9da624568018b41
      Resolves: #39920
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13882
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      d0dc3f19
    • Georg Ringer's avatar
      [TASK] Add sys_notes to info module again · 1af37237
      Georg Ringer authored
      Once sys_note records have been shown in the info module but
      after changing the code, this didn't work anymore.
      
      This patch adds a hook which is then used by sys_note
      
      Change-Id: Ib73db81a508ec88b9502a41c1405e6a47c056c61
      Resolves: #39234
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13813
      Reviewed-by: Wouter Wolters
      Reviewed-by: Felix Kopp
      Tested-by: Felix Kopp
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      1af37237
    • Christian Kuhn's avatar
      [FEATURE] Report status check for file and folder create mask · 24e9d42c
      Christian Kuhn authored
      In sane server setups, it is usually not a good idea to configure TYPO3
      to create files and folders with writable bit for 'others'. The
      introduction package actually sets fileCreateMask and folderCreateMask
      to 666 and 777, but this is to ease the installation process and make
      the introduction package work in curious setups as well without problems.
      
      Therefore we now add a warning to the reports module instead, if the
      write bit for others is set, so an administrator is informed on the
      possible security impact, while the installation process is still smooth.
      
      Change-Id: Iae75a9f9492d8b784a3e1ea2c754a14abbc58f3e
      Releases: 6.0
      Resolves: #39912
      Reviewed-on: http://review.typo3.org/13874
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      24e9d42c
    • Helmut Hummel's avatar
      [BUGFIX] Fix skipped test for t3lib_log_Logger · 7694ab31
      Helmut Hummel authored
      One test for t3lib_log_Logger is marked as skipped
      because it was unclear how to do the test.
      Implement the test correctly and remove the skip.
      
      Change-Id: Iad5b56b0fdbc96bf4c20509de0ada80a1e7c8908
      Fixes: #39916
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13878
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      7694ab31
    • Wouter Wolters's avatar
      [TASK] Adopt standard list layout for page records list · 5e0f02db
      Wouter Wolters authored
      Make record list on pages flexible and conform with list layout.
      Before this patch the table width was forced to 480px.
      
      Also adds header for each record list with total count and title.
      Moves the click menu and edit link to standard positions in table.
      Now includes the record list hover styles and standard paddings.
      
      CSS styles for previous non-standard table style are removed:
      there were no further references for ".typo3-page-stdlist".
      
      Change-Id: I9245442f174a5c82cd5c1cb0ab41dc0ea680fb24
      Resolves: #38368
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/12709
      Reviewed-by: Ingo Renner
      Tested-by: Ingo Renner
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Felix Kopp
      Tested-by: Felix Kopp
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      5e0f02db
  3. Aug 17, 2012
    • Hans Christian Reinl's avatar
      [FEATURE] Add styling to extension manager · b75e8911
      Hans Christian Reinl authored
      The styling of the extension manager is not completed.
      The CSS will follow step by step.
      
      First part is the styling of manage extensions.
      
      Change-Id: Id5d48cdf92b645cfe5188072d1af1bc226833326
      Releases: 6.0
      Resolves: #39909
      Reviewed-on: http://review.typo3.org/13870
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      b75e8911
    • Susanne Moog's avatar
      [BUGFIX] Extensions without description displayed wrong · 1f93ec6a
      Susanne Moog authored
      Extensions without descriptions are displayed
      wrong because of the empty title tag which is
      falsely interpreted by the tooltip plugin.
      
      Change-Id: Ie3f44152252ecb2dfa3e4400e27a7de66190f330
      Fixes: #39911
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13873
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      1f93ec6a
    • Wouter Wolters's avatar
      [TASK] Rename getTypo3Version to getCurrentTypo3Version · 04617bba
      Wouter Wolters authored
      Rename getTypo3Version to getCurrentTypo3Version
      
      Change-Id: I3cfd951e78ac45575022e5ce3c67ca81b438de37
      Resolves: #39901
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13871
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      04617bba
    • Christian Kuhn's avatar
      [TASK] Remove old em · e7efe03e
      Christian Kuhn authored
      Change-Id: Ieb3823ad72fe41875484dfc25c8f1eea1feef917
      Resolves: #39906
      Related: #39726
      Reviewed-on: http://review.typo3.org/13869
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      e7efe03e
    • Lorenz Ulrich's avatar
      [FEATURE] Make CSS for sysext form configurable · 0eee6027
      Lorenz Ulrich authored
      Move the default styles of ext:form to TS in
      plugin.tx_form._CSS_DEFAULT_STYLE. This way it can be disabled with
      TypoScript either via plugin.tx_form._CSS_DEFAULT_STYLE >, and also
      respects the config.removeDefaultCss setting.
      
      Change-Id: Ie2b0c397124f06ec32114983e78dd60b4229ce97
      Resolves: #32480
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/11932
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      0eee6027
    • Susanne Moog's avatar
      [FEATURE] Add new extension manager to the core · e5502bb4
      Susanne Moog authored
      For 6.0 a new extension manager based on
      extbase was developed. Goal of this extension
      manager is not to be the most feature rich
      but easy to use extension managers.
      
      Therefore the whole extension manager was
      restructured and some features where removed:
      * language handling -> will be an own extension
      * file editing -> can be done via other extensions
      * upload extension -> will be integrated into extdeveval
      
      This patch adds the base extension manager.
      Styling and JS fine tuning will be done afterwards.
      
      Please test the given functionality carefully and
      report as many bugs as you can find to the project
      at forge (TYPO3 6.0 > Extension Manager).
      
      Change-Id: I28ef14401f40e239e5ea235af2be3e431fb8789d
      Resolves: #39726
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13612
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      e5502bb4
    • Xavier Perseguers's avatar
      [FEATURE] Add support for native date/time fields · ccd6b9d9
      Xavier Perseguers authored
      TYPO3 stores date and date/time values as a Unix timestamp.
      This feature allows native database types to be used instead.
      
      Native fields must be marked in the TCA using the key "dbType":
      
      'my_native_date' => array(
          'exclude' => 0,
          'label' => 'My native date',
          'config' => array(
              'dbType'   => 'date',
              'type'     => 'input',
              'size'     => '8',
              'max'      => '20',
              'eval'     => 'date',
              'checkbox' => '0',
              'default'  => '0'
          )
      ),
      
      Supported types for "dbType" are: date, datetime
      
      Change-Id: I078047abd7a93e16cfca7f1fec3fe52109c6d347
      Resolves: #38965
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/12808
      Reviewed-by: Marcus Schwemer
      Tested-by: Marcus Schwemer
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      ccd6b9d9
    • Ingo Renner's avatar
      [BUGFIX] Fix failing t3lib_log tests · 88a05980
      Ingo Renner authored
      Some tests for t3lib_log are failing in some cases, because
      the fixture classes are not available. They are available
      when executing the tests with the phpunit backend module
      because the files are named *_test.php, recognized as
      test files and thus required.
      
      To avoid this confusion, the fixture classes are now moved
      to a fixture directory and renamed so that they not end with *_test.php
      To be consistent the class names are also renamed.
      
      
      Change-Id: Ia5efce2909111b79ed6c836c4c704a78faacdc65
      Fixes: #39885
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13854
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      88a05980
    • Stefan Neufeind's avatar
      [FEATURE] TypoScript: Allow easy comparison against multiple values · 08fcac15
      Stefan Neufeind authored
      Allow easy comparison like:
      [globalVar = TSFE:id = 10|12|15]   (in list)
      [globalVar = TSFE:id != 10|12|15]  (not in list)
      
      Change-Id: Iae920720ae6058c2cd741f74204c2fbce779e00f
      Resolves: #39700
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/13589
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Ingo Renner
      Tested-by: Ingo Renner
      08fcac15
  4. Aug 16, 2012
  5. Aug 15, 2012
    • Stefan Galinski's avatar
      [FEATURE] HMENU - sectionIndex: where clause should be configurable · af4153d9
      Stefan Galinski authored
      This changeset implements the sectionIndex setting
      "useColPos" that can be used to change the colPos
      query filter. A negative value drops the filter
      completely. Only integers are allowed as values
      and stdWrap is possible.
      
      Example:
      tt_content.menu.20.3.1.sectionIndex.useColPos = -1
      
      Change-Id: Ic65cdee014aa7972e3d28504a678a001355ed312
      Resolves: #21142
      Releases: 6.0
      Reviewed-on: http://review.typo3.org/11251
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Stefan Galinski
      Tested-by: Stefan Galinski
      af4153d9
    • Mario Rimann's avatar
      [SECURITY] XSS in install tool · 5f0d3e4e
      Mario Rimann authored
      In the "Basic Configuration" section, some configuration values are
      rendered without proper escaping both as input fields or as
      regular content of the page. These values are htmlspecialchars-
      treated now.
      
      For the "All Configuration" form, all input fields and text area fields get now htmlspecialchars-treated.
      
      Change-Id: I141efa5ad610bda4608f65c136af472cc3c4ec73
      Fixes: #21634
      Releases: 6.0, 4.7, 4.6, 4.5
      Security-Commit: 1063d380e3532b69c24800f20b1127af70f820a0
      Security-Bulletin: TYPO3-CORE-SA-2012-004
      Reviewed-on: http://review.typo3.org/13774
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      5f0d3e4e
    • Markus Bucher's avatar
      [SECURITY] Page Link Target vulnerable to XSS · 14f9a48e
      Markus Bucher authored
      This patch adds htmlspecialchars to page link target to prevent
      XSS.
      
      Change-Id: I5e9f07ec7465cd8658c4761328b394559cf9a53b
      Fixes: #32653
      Releases: 6.0, 4.7, 4.6, 4.5
      Security-Commit: 5de8ebf8a53e744fa9ce06a9e02835c7a637a664
      Security-Bulletin: TYPO3-CORE-SA-2012-004
      Reviewed-on: http://review.typo3.org/13773
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      14f9a48e