Added one of the hard coded options from the original config.php file

This commit is contained in:
Kyle Johnson 2013-05-30 22:03:20 -04:00
parent f4d2df3941
commit 22a73a3255
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ class AppController extends Controller {
$options = $this->Config->find('list', array('fields' => array('Name', 'Value')));
foreach ($options as $key => $value) {
Configure::write($key, $value);
}
}
Configure::write('SCALE_BASE', 100);
if ($this->AppModel->daemonStatus()) {
$this->set('daemonStatus', ('Running'));
} else {