Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Sep 14, 2015
1 parent 494120b commit 1871984
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ protected function _initRouter()
$frontController->addControllerDirectory(BASE_PATH.'/core/controllers/api', 'rest');

$router = $frontController->getRouter();
$router->addRoute('api-core', new Zend_Rest_Route($frontController, array(), array('rest')));
$router->addRoute('api-core', new Zend_Rest_Route($frontController, array(), array('rest')));

$enabledModules = array();

Expand Down
4 changes: 2 additions & 2 deletions core/controllers/InstallController.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ public function step3Action()
}

$this->Setting->setConfig('title', $form->getValue('name'));
$this->Setting->setConfig('description', $form->getValue('description'));
$this->Setting->setConfig('language', $form->getValue('lang'));
$this->Setting->setConfig('description', $form->getValue('description'));
$this->Setting->setConfig('language', $form->getValue('lang'));
$this->Setting->setConfig('time_zone', $form->getValue('timezone'));
$this->Setting->setConfig('default_assetstore', $assetstores[0]->getKey());

Expand Down
2 changes: 1 addition & 1 deletion tests/ControllerTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private function _initModule()
$frontController->addControllerDirectory(BASE_PATH.'/core/controllers/api', 'rest');

$router = $frontController->getRouter();
$router->addRoute('api-core', new Zend_Rest_Route($frontController, array(), array('rest')));
$router->addRoute('api-core', new Zend_Rest_Route($frontController, array(), array('rest')));

$enabledModules = array();

Expand Down

0 comments on commit 1871984

Please sign in to comment.