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

Commit

Permalink
Correctly cache the unique keys in the SQL cache (see #8712).
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed May 2, 2017
1 parent a445566 commit 5daad39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions system/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Contao Open Source CMS changelog
================================

Version 3.5.28 (2017-XX-XX)
---------------------------

### Fixed
Correctly cache the unique keys in the SQL cache (see #8712).


Version 3.5.27 (2017-04-25)
---------------------------

Expand Down
1 change: 1 addition & 0 deletions system/modules/core/library/Contao/Automator.php
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ public function generateDcaExtracts()
$objFile->append(sprintf("\$this->arrMeta = %s;\n", var_export($objExtract->getMeta(), true)));
$objFile->append(sprintf("\$this->arrFields = %s;\n", var_export($objExtract->getFields(), true)));
$objFile->append(sprintf("\$this->arrOrderFields = %s;\n", var_export($objExtract->getOrderFields(), true)));
$objFile->append(sprintf("\$this->arrUniqueFields = %s;\n", var_export($objExtract->getUniqueFields(), true)));
$objFile->append(sprintf("\$this->arrKeys = %s;\n", var_export($objExtract->getKeys(), true)));
$objFile->append(sprintf("\$this->arrRelations = %s;\n", var_export($objExtract->getRelations(), true)));

Expand Down

0 comments on commit 5daad39

Please sign in to comment.