From 9ad2d1ce1046f39717f13303fcb105e6cd4df478 Mon Sep 17 00:00:00 2001 From: hongweipeng <hongweichen8888@sina.com> Date: Thu, 9 Apr 2020 13:40:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=A0=87=E9=A2=98=E5=8C=85?= =?UTF-8?q?=E5=90=AB=E5=8D=95=E5=BC=95=E5=8F=B7=E6=97=B6=E4=B8=8D=E5=8F=AF?= =?UTF-8?q?=E7=94=A8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plugin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugin.php b/Plugin.php index dd689cc..4efd80d 100644 --- a/Plugin.php +++ b/Plugin.php @@ -10,7 +10,7 @@ if (!defined('__TYPECHO_ROOT_DIR__')) exit(0); */ class MenuTree_Plugin implements Typecho_Plugin_Interface { - public static $v = '0.8.0'; + public static $v = '0.8.1'; /** * 索引ID @@ -161,6 +161,7 @@ class MenuTree_Plugin implements Typecho_Plugin_Interface { if( $include ) { $menuHtml = '<ul>' . $menuHtml . '</ul>'; } + $menuHtml = str_replace("'", ''', $menuHtml); return $menuHtml; }