songxingwei 3 years ago
parent
commit
29f8f1e6b2
1 changed files with 4 additions and 0 deletions
  1. 4 0
      application/admin/controller/Config.php

+ 4 - 0
application/admin/controller/Config.php

@@ -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('系统参数配置成功!');
     }