Corrected codestyle

This commit is contained in:
dmromanov 2013-08-16 14:12:27 +04:00
parent b4092e374d
commit 7989bad5b7

View file

@ -486,10 +486,7 @@ class CakeSession {
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));
}
}
}