|
@@ -81,9 +81,13 @@ class Config extends Controller
|
|
|
if (Request::isGet()) {
|
|
|
$this->fetch('system-config');
|
|
|
}
|
|
|
+ $post = Request::post();
|
|
|
+ $post['integral_share_img'] = $post['logo'];
|
|
|
+ unset($post['logo']);
|
|
|
foreach (Request::post() as $key => $value) {
|
|
|
sysconf($key, $value);
|
|
|
}
|
|
|
+
|
|
|
$this->success('系统参数配置成功!');
|
|
|
}
|
|
|
|