Skip to content
Snippets Groups Projects
  1. Oct 21, 2011
    • Helmut Hummel's avatar
      [TASK] Use decent defaults for resizable textareas · 3f636999
      Helmut Hummel authored
      * Increase the maximum size in the default values
      * Do not make the textareas flexible by default
      * Do not apply the max height setting to manually resizable textareas
      
      Change-Id: I49c836b101d116fcc2205c47d73e3f640415455f
      Resolves: #30274
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5329
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      3f636999
    • Helmut Hummel's avatar
      [BUGFIX] Improve check for started session in rsaauth · 60dc1889
      Helmut Hummel authored
      Checking if the superglobal $_SESSION is an array is not reliable.
      Change the check to use session_id() which is an empty string 
      if the session has not been started.
      
      
      Change-Id: Iac913beee5af40d28c17ade6a8bfa17df4da2374
      Resolves: #30270
      Releases: 4.3, 4.4, 4.5, 4.6
      Reviewed-on: http://review.typo3.org/5314
      Reviewed-by: Oliver Klee
      Reviewed-by: Jigal van Hemert
      Reviewed-by: Zach Davis
      Tested-by: Zach Davis
      Tested-by: Jigal van Hemert
      60dc1889
    • Oliver Hader's avatar
      [TASK] Update submodule branches for TYPO3 4.6.0 · f3ced448
      Oliver Hader authored
      * dbal uses DBAL_1-3
      * extbase uses extbase_1-4
      * fluid uses fluid_1-4
      * version uses 4.6
      * workspaces uses 4.6
      
      Change-Id: I40f364388b4940d3dcf501c8bb94fee7ee36101c
      Reviewed-on: http://review.typo3.org/6183
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      f3ced448
    • Xavier Perseguers's avatar
      [BUGFIX] Pootle: Multi-line labels are not rendered properly · 3a9de702
      Xavier Perseguers authored
      In order to ensure that multi-line labels can be properly translated on Pootle or
      any 3rd party tool, it turns out that an additional attribute xml:space="preserve"
      should be added to each and every <trans-unit> tag in the localization files.
      
      Change-Id: I74dbf92196b649b96023b329eb12ad98dac7be49
      Fixes: #31141
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6121
      Reviewed-by: Dominique Feyer
      Tested-by: Dominique Feyer
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      3a9de702
    • Francois Suter's avatar
      [TASK] Clean up code of available services report · 4622bd62
      Francois Suter authored
      The code of the available services report contains a number of
      incomplete phpDoc blocks plus some small variables initialization
      errors. This should be corrected before further work.
      
      Change-Id: I02470e4daecfb8dd15e9477f33ba4023e0340c08
      Resolves: #31174
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6170
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      4622bd62
    • Christopher Stelmaszyk's avatar
      [BUGFIX] PageTS newRecord wizard options are unset by default · 5d62ce26
      Christopher Stelmaszyk authored
      The following PageTS options are unset by default:
      * mod.wizards.newRecord.pages.show.pageInside
      * mod.wizards.newRecord.pages.show.pageAfter
      * mod.wizards.newRecord.pages.show.pageSelectPosition
      
      However, PHP codes treats these unset values (empty string) as being
      enabled, which can lead to confusions.
      
      Set the default value to 1.
      
      Change-Id: I272155a8fe0c4f09ef14a7723f3cad23fc527197
      Related: #24616
      Resolves: #31132
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6128
      Reviewed-by: Markus Klein
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Francois Suter
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      5d62ce26
    • Xavier Perseguers's avatar
      [BUGFIX] Menu link creation should always return an array · 8fd9d5db
      Xavier Perseguers authored
      According to the documentation, method link() returns an array with a
      few keys. In case of error however, FALSE is returned which in turn
      crashes PHP if the returned value is not post-processed and sent as
      this to t3lib_div::implodeAttributes() which forces an array to be
      passed as argument.
      
      Change-Id: I7a593dd7eec2bee9e9f84415ccdd592f4d767caf
      Fixes: #31079
      Related: #17037
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6155
      Reviewed-by: Philipp Gampe
      Reviewed-by: Markus Klein
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      8fd9d5db
    • Xavier Perseguers's avatar
      [BUGFIX] The list of extensions is not sorted in Language Packages · dad4d786
      Xavier Perseguers authored
      The update language package dialog in Extension Manager shows a list of
      non-sorted extension keys and does not provide a way to sort them manually.
      This makes it hard to find a specific extension.
      
      Change-Id: I791dd173dc0f7da0f05941e2740aca5a49849fc1
      Fixes: #31158
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6157
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      dad4d786
  2. Oct 20, 2011
  3. Oct 19, 2011
    • Xavier Perseguers's avatar
      [BUGFIX] Indent with new lines causes invalid output · b4ee04f4
      Xavier Perseguers authored
      Adding tabs at the beginning of lines for multi-line labels breaks the output
      when the label is used in a preformated environment such as an email template.
      
      Change-Id: I31850fdff437b81f5b07a2e58ac2281d10a8d1c4
      Fixes: #31109
      Relates: #31035
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6062
      Reviewed-by: Dominique Feyer
      Tested-by: Dominique Feyer
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      b4ee04f4
    • Dmitry Dulepov's avatar
      [TASK] Fix CGL conformance in t3lib_l10n_parser_Llxml · 4894840b
      Dmitry Dulepov authored
      Some functions of the file have underscores as the first character
      of the function name. This should be solved before 4.6 release
      in order to keep interfaces stable later.
      
      Change-Id: Id1460435d67874685c491d09a53e19e514f07740
      Resolves: #31047
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5949
      Reviewed-by: Björn Pedersen
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Steffen Ritter
      Tested-by: Steffen Ritter
      4894840b
  4. Oct 18, 2011
    • Steffen Ritter's avatar
      [BUGFIX] root-lines for DB Mounts in Pagetree rendering wrong markup · 6f61a644
      Steffen Ritter authored
      The option "options.pageTree.showPathAboveMounts = 1" which shows the
      rootline of each DB Mount in a line before is implemented in a
      non-valid way.
      
      This means, that a <div> tag is rendered within an <ul> tag right in
      front of the <li> of the DB Mount node.
      
      Change-Id: Ic715426b8d04220410bcb15bfba33a39e5fd47bc
      Fixes: #31067
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5962
      Reviewed-by: Xavier Perseguers
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      6f61a644
    • Dominique Feyer's avatar
      [TASK] English XLIFF files should not contain target element · 92eb0f63
      Dominique Feyer authored
      Pootle uses the English XLIFF file has the template language and as such
      it does not make sense to have "en" -> "en" translation files.
      
      English XLIFF files are templates and should contain only a 'source', not
      a 'target' element.
      
      This commit contains:
      
      - Remove of the target elements
      - Remove target-language attribute
      - Set the date attribute to the correct format
      - Remove approved attribute
      
      Change-Id: I84f4534f5ed595868c88f05816a73464a76f3f25
      Resolves: #31035
      Relates: #30916
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5916
      Tested-by: Philipp Gampe
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      92eb0f63
    • Steffen Gebert's avatar
      [TASK] PHPdoc improvement in saltedpasswords autoloader · 63faefdc
      Steffen Gebert authored
      Change-Id: Ifb8a3b6235e409adfd3204e883bd69b83213cf20
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5926
      Reviewed-by: Björn Pedersen
      Tested-by: Björn Pedersen
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      63faefdc
    • Dominique Feyer's avatar
      [TASK] Add support for English XLIFF template files · 440ee779
      Dominique Feyer authored
      Currently the XLIFF files provided with the Core are "en" -> "en" translation files,
      and this is a wrong design.
      
      English XLIFF files must be template files (XLIFF files without target element) and
      as such, the parser needs to be adjusted not to return an empty label.
      
      Change-Id: I7181872ebd9ff7a89ec66558aa6de9a9608f72c7
      Resolves: #30916
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5914
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Björn Pedersen
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      440ee779
    • Steffen Ritter's avatar
      [BUGFIX] Pagetree broken due to JavaScript exception · f362e14f
      Steffen Ritter authored
      Sometimes (especially with empty DB Mount) the Pagetree is broken and stops with a JavaScript Exception.
      
      This is due to some problems with the state-restore logic, where the state of not-yet-rendered nodes is applied.
      
      Change-Id: Ic9ac5792272b3bc6b2907149a93cd7c22649c317
      Fixes: #28687
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5958
      Reviewed-by: Björn Pedersen
      Tested-by: Björn Pedersen
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      f362e14f
    • TYPO3 v4 Release Team's avatar
      [TASK] Raise submodule pointer · 749f1b4c
      TYPO3 v4 Release Team authored
      Change-Id: Ib698448736b9649cd2a60a4f72b43810075f8793
      Reviewed-on: http://review.typo3.org/5940
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      749f1b4c
    • Simon Schaufelberger's avatar
      [BUGFIX] date expects parameter 2 to be long, string given · 46cb802d
      Simon Schaufelberger authored
      Any zero length string value is replaced with the current timestamp.
      (Just like the default value for the second parameter of date/gmdate.)
      
      Change-Id: I44d095deb7b511b8b35730f2f031186aeaadb945
      Fixes: #30931
      Releases: 4.6, 4.5, 4.4
      Reviewed-on: http://review.typo3.org/5821
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      Reviewed-by: Björn Pedersen
      Reviewed-by: Simon Schaufelberger
      Tested-by: Simon Schaufelberger
      46cb802d
    • Jigal van Hemert's avatar
      [BUGFIX] Load date-time picker in Scheduler module · e0f136f8
      Jigal van Hemert authored
      The date-time picker must be loaded explicitly.
      
      Change-Id: I06014d1a3ed9ce6584272632f1532ba1bcf92843
      Releases: 4.6
      Fixes: #31027
      Reviewed-on: http://review.typo3.org/5927
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      e0f136f8
  5. Oct 17, 2011
    • Christian Kuhn's avatar
      [BUGFIX] Class not found fatal in autoload · f8cc8b30
      Christian Kuhn authored
      If the caching framework configuration is broken and cache_phpcode
      array is not set properly, cacheManager throws a fatal error unable
      to find class t3lib_cache_exception_NoSuchCache. The patch adds the
      class to be required during bootstrap so the exception (uncaught) is
      actually thrown and hints an administrator on what exactly goes wrong.
      
      Change-Id: I42ac66457776e1b4a4f8dca40e41f364d9496eed
      Resolves: #30913
      Reviewed-on: http://review.typo3.org/5881
      Reviewed-by: Björn Pedersen
      Reviewed-by: Xavier Perseguers
      Reviewed-by: Dmitry Dulepov
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      f8cc8b30
    • Tomas Norre Mikkelsen's avatar
      [BUGFIX] Layout of "Move Element" screen · 84293df6
      Tomas Norre Mikkelsen authored
      Added more space between page icon/title and checkbox
      "Make copy instead of moving element".
      
      Change-Id: I5467d98adfebeee7b022dab829da175bf52f3254
      Fixes: #27605
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5008
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      84293df6
    • Dmitry Dulepov's avatar
      [TASK] Update a list of required PHP extensions in the INSTALL.txt · 4eb7c966
      Dmitry Dulepov authored
      OpenSSL PHP extension is now required by the TYPO3 core and must
      be listed in the INSTALL.txt.
      
      Change-Id: I54f853603ec7fa5079980026abfc7de59196793c
      Resolves: #30999
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5896
      Reviewed-by: Oliver Klee
      Tested-by: Oliver Klee
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      4eb7c966
    • Peter Niederlag(office)'s avatar
      [BUGFIX] skip missing icons in tceforms select options · 44a81cd0
      Peter Niederlag(office) authored
      check existance of file before adding background style url
      
      Change-Id: Ie5db6d6a6b6b7ccdd5772a829be0ca236787cd9a
      Fixes: #24591
      Releases: 4.5, 4.6
      Reviewed-on: http://review.typo3.org/5394
      Reviewed-by: Björn Pedersen
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Philipp Gampe
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      44a81cd0
  6. Oct 16, 2011
    • Oliver Klee's avatar
      [BUGFIX] About module is missing the extension credits · 6940b47b
      Oliver Klee authored
      Re-add the extension list to the Help > About module.
      
      This part had acidentally been removed during the refactoring
      of that module.
      
      Resolves: #30972
      
      Change-Id: I9f4adcb30b12f67e8ba302c01011a040c8d6a469
      Releases: 4-6
      Reviewed-on: http://review.typo3.org/5864
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      6940b47b
  7. Oct 15, 2011
    • Dmitry Dulepov's avatar
      [TASK] Add a hook to customize field list for Backend search · 4a7a1f59
      Dmitry Dulepov authored
      Due to Backend search changes, we need a hook to alter table
      search configuration in the List module. This hook can be used
      by extensions to add their own fields to the list of searchable
      fields. Also this hook will be used by a compatibility extension
      that provides legacy search functionality until extension
      authors update their extensions for smarter search.
      
      Change-Id: I0b37ceb617779925555bcbeb10da9ef093d4bd81
      Resolves: #30915
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5785
      Reviewed-by: Tolleiv Nietsch
      Tested-by: Tolleiv Nietsch
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      4a7a1f59
  8. Oct 13, 2011
  9. Oct 11, 2011
    • TYPO3 v4 Release Team's avatar
      [TASK] Set TYPO3 version to 4.6-dev · e33e6468
      TYPO3 v4 Release Team authored
      Change-Id: I328139309e5d971ea771f3506325efe544414bc6
      Reviewed-on: http://review.typo3.org/5723
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      e33e6468
    • TYPO3 v4 Release Team's avatar
      [RELEASE] Release of TYPO3 4.6.0rc1 · 1eb2bf9b
      TYPO3 v4 Release Team authored
      Change-Id: I74f33e689df164058f8e17b104c7f9650f99f604
      Reviewed-on: http://review.typo3.org/5722
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      1eb2bf9b
    • Kay Strobach's avatar
      [BUGFIX] EM: Fix button "close window" after fulfilling dependencies · 7c26376f
      Kay Strobach authored
      This fix opens the window in a sized window and changes the logic to
      determine the correct function for closing the window.
      
      Change-Id: Ie16d67284240a833e5bfae67d8b78eab808f9a79
      Releases: 4.6
      Resolves: #29788
      Reviewed-on: http://review.typo3.org/5706
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      7c26376f
    • TYPO3 v4 Release Team's avatar
      [TASK] Raise submodule pointer · 50ff6148
      TYPO3 v4 Release Team authored
      Change-Id: I2518fcaa595529cf840b0d56805d11feb17468fe
      Reviewed-on: http://review.typo3.org/5718
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      50ff6148
    • Oliver Hader's avatar
      [BUGFIX] Showmodule cannot be called before Store is loaded · 54f35c3c
      Oliver Hader authored
      Example: Using the direct page edit feature (backend.php?edit=xxx)
      the BE responds with "Module loader No module found. If this is a
      temporary error, please reload the Backend!" error.
      
      Since the AJAX request is not finished at the time this is called,
      it has to be checked whether the store was completely loaded.
      
      Change-Id: Ia7c39fc94e75ef003a7a839856ea78cbd0854a66
      Releases: 4.6,4.5
      Resolves: #28951
      Reviewed-on: http://review.typo3.org/5681
      Reviewed-by: Helmut Hummel
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Tested-by: Jigal van Hemert
      54f35c3c
    • Xavier Perseguers's avatar
      [BUGFIX] backend.php wrongly checks deprecated TSconfig · ebc80679
      Xavier Perseguers authored
      Deprecated option options.shortcut_onEditId_dontSetPageTree is wrongly
      tested.
      
      Change-Id: If88e869b8c92592ad6bb3369f1eda29c2a0809bf
      Fixes: #30754
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/5683
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      ebc80679
    • Tolleiv Nietsch's avatar
      [BUGFIX] Replace debug with call to deprecationLog · dea83578
      Tolleiv Nietsch authored
      Commit 0eb4686a wrongly introduced
      a debug() statement instead of a call to the deprecationLog()
      method.
      
      Change-Id: Ie54e6b0f1d22035b17dad59ec8fea7b1b2f644f1
      Resolves: #30759
      Branches: 4.4, 4.5, 4.6
      Reviewed-on: http://review.typo3.org/5693
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      dea83578
    • Philipp Gampe's avatar
      [TASK] Merge linkvalidator for RC1 · 7c24e31d
      Philipp Gampe authored
      Changes included:
      3b062e3 [TASK] Prepare merge for 4.6-RC1 (part 2)
      27e93d6 Merge "[BUGFIX] Invalid target language in localization file"
      ba0178b [BUGFIX] Invalid target language in localization file
      36f1b21 [BUGFIX][SECURITY] SQL Injection in Scheduler Task of
      Linkvalidator
      9636b77 [TASK] Merge Changes from core since last sync
      709531e [TASK] Prepare merge for 4.6-RC1
      5607748 Merge "[BUGFIX] SQL error if a task is run on a disabled page"
      e2bb756 [TASK] Update manual
      79b4741 [BUGFIX] SQL error if a task is run on a disabled page
      6856163 Merge "[BUGFIX] It is not possible to set page 0 to schedular
      task"
      28a38da Merge "[BUGFIX] SQL error if opening a disabled page with
      module"
      0fece3f [BUGFIX] It is not possible to set page 0 to schedular task
      df464d4 [BUGFIX] Revert change in interface signature
      4335331 [BUGFIX] SQL error if opening a disabled page with module
      c12d8f5 [TASK] Fix CGL issues
      74a9c14 [BUGFIX] Initialize $currentR in analyseTypoLinks
      e5d6b19 [TASK] Bump version number
      
      Change-Id: Ia3a9583112b601c21f58e9b782ecb5b03e331fe4
      Resolves: #30756
      Reviewed-on: http://review.typo3.org/5685
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      7c24e31d
    • Helmut Hummel's avatar
      [BUGFIX] EM: Remove nested form tag · c03865a9
      Helmut Hummel authored
      In the new EM in the extension configuration settings it is not possible
      to switch between extension configuration categories in some browsers.
      This is caused by a nested form tag which will be removed with this commit.
      
      Change-Id: Ie4e4d5f33d319467626aa4923abe07d608af9bbb
      Resolves: #30257
      Releases: 4.5, 4.6
      Reviewed-on: http://review.typo3.org/5688
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      c03865a9
    • Eric Chavaillaz's avatar
      [BUGFIX] Wrong alignment of French labels for login screen · 404f619c
      Eric Chavaillaz authored
      Since the username label changed from "Utilisateur" to "Nom d'utilisateur"
      in French, the alignment of labels and text fields is broken.
      
      Change-Id: I35f28fd61f8c4a3e133949ae8eb865af0e0a1bc9
      Fixes: #30688
      Releases: 4.5,4.6
      Reviewed-on: http://review.typo3.org/5648
      Reviewed-by: Eric Chavaillaz
      Tested-by: Eric Chavaillaz
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      404f619c
    • Kay Strobach's avatar
      [TASK] Remove space between ExtJS tbar and related panel · edc6bfe8
      Kay Strobach authored
      This task just changes one line of css to remove the senseless space
      between a panel and it's related tbar.
      
      This is useful, because the space between toolbar and panel was bigger,
      than the space to neighboor panels.
      
      Change-Id: I631acb14d1ed598f2e5718b84b21d76277a37391
      Resolves: #28793
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/4170
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Fabien Udriot
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      edc6bfe8
    • Simon Schaufelberger's avatar
      [BUGFIX] handler is undefined when resizing the backend · bb635a8c
      Simon Schaufelberger authored
      Resizing the backend browser window results in a JavaScript error.
      The function that handles the re-positioning of the menus does not
      work correctly. The observer requires a reference to a callback
      function - currently the method was directly executed and the return
      value used as function reference, which was undefined in this case.
      
      Change-Id: Ifb2db858d7075f4fd714d737576189c0e1efc5a5
      Resolves: #25787
      Releases: 4.6, 4.5
      Reviewed-on: http://review.typo3.org/5634
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      bb635a8c
    • Helmut Hummel's avatar
      [BUGFIX] Implement availability checks for rsaauth · 6b07e404
      Helmut Hummel authored
      The 123 Installer now checks if openssl is configured properly
      before enabling saltedpasswords and rsaauth.
      
      Resolves: #28275
      Releases: 4.6
      
      Change-Id: I1d6c5ce6e3dfedfac85349baa01c88118bb348f8
      Reviewed-on: http://review.typo3.org/5657
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Dmitry Dulepov
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      6b07e404