소스 검색

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

sugar1569 7 년 전
부모
커밋
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();
     }