Skip to content

Commit 2a15114

Browse files
authored
Merge branch 'master' into fix-link-to-github-pipeline-badge
2 parents 424ed4d + b88d698 commit 2a15114

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/config/sfCacheConfigHandler.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ protected function addCache($actionName = '')
9292
$lifeTime = !$enabled ? '0' : $this->getConfigValue('lifetime', $actionName, '0');
9393

9494
// client_lifetime
95-
$clientLifetime = !$enabled ? '0' : $this->getConfigValue('client_lifetime', $actionName, $lifeTime, '0');
95+
$clientLifetime = !$enabled ? '0' : $this->getConfigValue('client_lifetime', $actionName, $lifeTime);
9696

9797
// contextual
9898
$contextual = $this->getConfigValue('contextual', $actionName) ? 'true' : 'false';

lib/form/sfForm.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class sfForm implements ArrayAccess, Iterator, Countable
4747
protected $isBound = false;
4848
protected $taintedValues = array();
4949
protected $taintedFiles = array();
50-
protected $values;
50+
protected $values = array();
5151
protected $defaults = array();
5252
protected $fieldNames = array();
5353
protected $options = array();

0 commit comments

Comments
 (0)