Просмотр исходного кода

修复部分服务器获取title乱码

sugar1569 7 лет назад
Родитель
Сommit
475d844e3c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      application/admin/controller/wechat/Reply.php

+ 1 - 1
application/admin/controller/wechat/Reply.php

@@ -26,7 +26,7 @@ class Reply extends AuthController
         $replay = WechatReply::getDataByKey(input('key'));
         $this->assign('replay_arr',json_encode($replay));
         $this->assign('key',input('key'));
-        $this->assign('title',input('title'));
+        $this->assign('title',urldecode(input('title')));
         return $this->fetch();
     }