Update of /cvsroot/phpwiki/phpwiki/lib/plugin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30605
Modified Files:
CreateToc.php
Log Message:
fix # back link
Index: CreateToc.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/CreateToc.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -2 -b -p -d -r1.33 -r1.34
--- CreateToc.php 28 Jan 2007 22:37:04 -0000 1.33
+++ CreateToc.php 28 Jan 2007 22:47:06 -0000 1.34
@@ -386,5 +386,6 @@ function toggletoc(a) {
$toclink = HTML(_("Table Of Contents"),
" ",
- HTML::img(array('name'=>'TOC',
+ HTML::a(array('name'=>'TOC')),
+ HTML::img(array(
'id'=>'toctoggle',
'class'=>'wikiaction',
@@ -410,4 +411,7 @@ function toggletoc(a) {
// $Log$
+// Revision 1.34 2007/01/28 22:47:06 rurban
+// fix # back link
+//
// Revision 1.33 2007/01/28 22:37:04 rurban
// beautify +/- collapse icon
|