Added one of the hard coded options from the original config.php file
This commit is contained in:
parent
f4d2df3941
commit
22a73a3255
|
@ -57,7 +57,8 @@ class AppController extends Controller {
|
||||||
$options = $this->Config->find('list', array('fields' => array('Name', 'Value')));
|
$options = $this->Config->find('list', array('fields' => array('Name', 'Value')));
|
||||||
foreach ($options as $key => $value) {
|
foreach ($options as $key => $value) {
|
||||||
Configure::write($key, $value);
|
Configure::write($key, $value);
|
||||||
}
|
}
|
||||||
|
Configure::write('SCALE_BASE', 100);
|
||||||
if ($this->AppModel->daemonStatus()) {
|
if ($this->AppModel->daemonStatus()) {
|
||||||
$this->set('daemonStatus', ('Running'));
|
$this->set('daemonStatus', ('Running'));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue