From 86424936765ada4dc0fb309159941640d5a0a8dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E9=A3=9E?= Date: Thu, 21 Nov 2013 14:18:59 +0800 Subject: [PATCH] Update Menu.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正多个插件同时注册了后台面板后,后台菜单焦点选择和链接错误的问题。 --- var/Widget/Menu.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/var/Widget/Menu.php b/var/Widget/Menu.php index 1b8ec781..c360eadd 100644 --- a/var/Widget/Menu.php +++ b/var/Widget/Menu.php @@ -206,7 +206,13 @@ class Widget_Menu extends Typecho_Widget } } } - + + if(!empty($currentUrlParts['query']) && substr($urlParts['path'],-13) == 'extending.php'){ + if( $urlParts['query'] != $currentUrlParts['query']){ + $validate = false; + } + } + if ($hidden && $validate) { $hidden = false; }