Skip to content

Commit

Permalink
Bumping version to '2.1.3 rc1'.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobdenotter committed Mar 17, 2015
1 parent d27d18d commit e50db68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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'
Expand All @@ -309,7 +309,7 @@ public function initLocale()
substr(Application::DEFAULT_LOCALE, 0, 2)
));
}

setlocale(LC_ALL, array_unique($locale));

$this->register(
Expand Down

0 comments on commit e50db68

Please sign in to comment.