Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danrot committed Jan 12, 2017
1 parent 222b4f7 commit 5833dad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG for Sulu CMF
======================

* 1.3.7 (2017-01-12)
* HOTFIX #3136 [ContentBundle] Fixed resource locator issue while moving pages
* HOTFIX #3137 [ContentBundle] Fixed locale for categories in smart content overlay

* 1.3.6 (2017-01-10)
* HOTFIX #3128 [All] Bumped twig version to ^1.11

Expand Down
6 changes: 5 additions & 1 deletion app/SymfonyRequirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,11 @@ protected function getRealpathCacheSize()
{
$size = ini_get('realpath_cache_size');
$size = trim($size);
$unit = strtolower(substr($size, -1, 1));
$unit = '';
if (!ctype_digit($size)) {
$unit = strtolower(substr($size, -1, 1));
$size = (int) substr($size, 0, -1);
}
switch ($unit) {
case 'g':
return $size * 1024 * 1024 * 1024;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"type": "project",
"description": "The sulu content management framework",
"version": "1.3.6",
"version": "1.3.7",
"autoload": {
"psr-0": {
"": "src/"
Expand Down

0 comments on commit 5833dad

Please sign in to comment.