Skip to content

Commit

Permalink
Merge branch 'master' into fix-link-to-github-pipeline-badge
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu authored Jan 18, 2024
2 parents 424ed4d + b88d698 commit 2a15114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/config/sfCacheConfigHandler.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected function addCache($actionName = '')
$lifeTime = !$enabled ? '0' : $this->getConfigValue('lifetime', $actionName, '0');

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

// contextual
$contextual = $this->getConfigValue('contextual', $actionName) ? 'true' : 'false';
Expand Down
2 changes: 1 addition & 1 deletion lib/form/sfForm.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class sfForm implements ArrayAccess, Iterator, Countable
protected $isBound = false;
protected $taintedValues = array();
protected $taintedFiles = array();
protected $values;
protected $values = array();
protected $defaults = array();
protected $fieldNames = array();
protected $options = array();
Expand Down

0 comments on commit 2a15114

Please sign in to comment.