Skip to content

Commit

Permalink
Corrected codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
dmromanov committed Aug 16, 2013
1 parent b4092e3 commit 7989bad
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/Cake/Model/Datasource/CakeSession.php
Expand Up @@ -486,10 +486,7 @@ protected static function _configureSession() {
if (!empty($sessionConfig['ini']) && is_array($sessionConfig['ini'])) {
foreach ($sessionConfig['ini'] as $setting => $value) {
if (ini_set($setting, $value) === false) {
throw new CakeSessionException(
__d('cake_dev', 'Unable to configure the session, setting %s failed.',
$setting)
);
throw new CakeSessionException(__d('cake_dev', 'Unable to configure the session, setting %s failed.', $setting));
}
}
}
Expand Down

0 comments on commit 7989bad

Please sign in to comment.