* Modify config get.

This commit is contained in:
caoyanyi
2022-03-24 09:02:00 +08:00
parent 6729298c92
commit e2ba478233
2 changed files with 12 additions and 10 deletions
+2 -2
View File
@@ -376,8 +376,8 @@ class router extends baseRouter
$view->rand = $this->session->random;
$this->session->set('rand', $this->session->random);
$view->sprintConcept = $this->config->custom->sprintConcept;
$view->URAndSR = $this->config->custom->URAndSR;
$view->sprintConcept = zget($this->config->custom, 'sprintConcept', '0');
$view->URAndSR = zget($this->config->custom, 'URAndSR', '0');
echo json_encode($view);
}