From 50a1ee33b774f84e3773a73d584f93cdad695d8e Mon Sep 17 00:00:00 2001 From: x2001corpet Date: Sat, 31 Mar 2007 16:55:53 +0000 Subject: [PATCH] fix xhtml : id don't accept / char git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1639 839d8a87-29fc-0310-9880-83ba4fa771e5 --- templates/admin/wiki.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/admin/wiki.tpl b/templates/admin/wiki.tpl index 8f5dff1..ebcc34c 100644 --- a/templates/admin/wiki.tpl +++ b/templates/admin/wiki.tpl @@ -39,13 +39,13 @@ function replie(me, cat) { if (toggle == 1) return; toggle = 2; - $("tr[@id^=row/"+cat+"/]").hide(); + $("tr[@id^=row_"+cat+"_]").hide(); $(me).attr('src', 'images/k1.gif'); } function deplie(me, cat) { if (toggle == 2) return; toggle = 1; - $("tr[@id^=row/"+cat+"/]").show(); + $("tr[@id^=row_"+cat+"_]").show(); $(me).attr('src', 'images/k2.gif'); } function toggle_folder() { @@ -95,7 +95,7 @@ {foreach from=$pages item=perm key=page name=pages} - + {if $smarty.foreach.pages.last} L -- 2.1.4