Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/2.11.12' into lts
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Aug 22, 2013
2 parents 9b3efa6 + 939a9eb commit d3ae42d
Show file tree
Hide file tree
Showing 41 changed files with 21,824 additions and 20,594 deletions.
36 changes: 32 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
Contao Open Source CMS Changelog
================================

Version 2.11.12 (2013-08-22)
----------------------------

### Fixed
Allow to paste into the root page in "edit multiple" mode (see #5620).

### Updated
Updated TCPDF to version 6.0.010 (see #5676).

### Fixed
Backported the changes from e44864d2 (see #5683).

### Fixed
Handle all possible errors when uploading files (see #5934).

### Improved
Improved the memory footprint of the search index rebuild (see #5681).

### Fixed
Do not trigger the "setNewPassword" hook twice (see #5247).

### Updated
Updated SimplePie to version 1.3.1 (see #5604).

### Fixed
Delete the `pathconfig.php` file in the install tool (see #5536).


Version 2.11.11 (2013-04-03)
----------------------------

Expand Down Expand Up @@ -102,7 +130,7 @@ The Date class should return `00:00` for `Date(0)->time` (see #4249).
Handle dependencies when updating extensions (see #3804).

### Fixed
Fixed the unprefixed CSS gradient output (see #4569).
Fixed the unprefixed CSS gradient output (see #4569).

### Fixed
Fixed a small formatting issue in the Music Academy theme (see #5160).
Expand Down Expand Up @@ -483,7 +511,7 @@ correctly (see #4006).
Updated MooTools to version 1.4.5 which fixes a critical bug.

### Fixed
Relative URLs are now validated correctly (`'rgxp'=>'url'`) (see #3792).
Relative URLs are now validated correctly (`'rgxp'=>'url'`) (see #3792).

### Fixed
Adjust the submit button height in Opera (see #3940).
Expand Down Expand Up @@ -782,7 +810,7 @@ Version 2.11.RC1 (2011-12-30)
### New
The back end file uploader can now be replaced with a custom one (see #3236).
Also, the uploader now tries to use the HTML5 "multiple" attribute in the file
input field if the browser supports it.
input field if the browser supports it.

### Improved
Added edit buttons to the module wizard to directly jump to a front end module
Expand Down Expand Up @@ -812,7 +840,7 @@ Updated TinyMCE to version 3.4.7 (see #3601).

### New
Added advanced image crop modes to define more precisely which part of an image
shall be preserved when cropping it (see #2422).
shall be preserved when cropping it (see #2422).

### New
Support entering the image title in addition to the alternate text (see #3494).
Expand Down
8 changes: 8 additions & 0 deletions contao/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ public function __construct()
$GLOBALS['TL_CONFIG']['showHelp'] = false;
$GLOBALS['TL_CONFIG']['displayErrors'] = true;

// Remove the pathconfig.php file if TL_PATH is wrong (see #5428)
if (($strPath = preg_replace('/\/contao\/[^\/]*$/i', '', $this->Environment->requestUri)) != TL_PATH)
{
$objFile = new File('system/config/pathconfig.php');
$objFile->delete();
$this->reload();
}

// Static URLs
$this->setStaticUrl('TL_FILES_URL', $GLOBALS['TL_CONFIG']['staticFiles']);
$this->setStaticUrl('TL_SCRIPT_URL', $GLOBALS['TL_CONFIG']['staticSystem']);
Expand Down
Loading

0 comments on commit d3ae42d

Please sign in to comment.