From e50db68a2b5667a7eedafded8d47cc460c4b7f7d Mon Sep 17 00:00:00 2001 From: Bob den Otter Date: Tue, 17 Mar 2015 21:34:43 +0100 Subject: [PATCH] Bumping version to '2.1.3 rc1'. --- src/Application.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Application.php b/src/Application.php index 30577c8ab87..8ad95d2ee16 100644 --- a/src/Application.php +++ b/src/Application.php @@ -28,9 +28,9 @@ class Application extends Silex\Application public function __construct(array $values = array()) { - $values['bolt_version'] = '2.1.2'; - $values['bolt_name'] = ''; - $values['bolt_released'] = true; // `true` for stable releases, `false` for alpha, beta and RC. + $values['bolt_version'] = '2.1.3'; + $values['bolt_name'] = 'rc'; + $values['bolt_released'] = false; // `true` for stable releases, `false` for alpha, beta and RC. parent::__construct($values); @@ -287,7 +287,7 @@ public function initLocale() } // $app['locale'] should only be a single value. $this['locale'] = reset($configLocale); - + // Set The Timezone Based on the Config, fallback to UTC date_default_timezone_set( $this['config']->get('general/timezone') ?: 'UTC' @@ -309,7 +309,7 @@ public function initLocale() substr(Application::DEFAULT_LOCALE, 0, 2) )); } - + setlocale(LC_ALL, array_unique($locale)); $this->register(