Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv15818/lib
Modified Files:
diff.php
Log Message:
Minor code cleanup: don't htmlspecialchar page title, since GeneratePage()
does this for us.
Index: diff.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/diff.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** diff.php 2001/02/14 22:02:05 1.9
--- diff.php 2001/03/05 23:38:16 1.10
***************
*** 1072,1077 ****
echo GeneratePage('MESSAGE', $html,
! sprintf(gettext ("Diff of %s."),
! htmlspecialchars($pagename)), 0);
}
?>
--- 1072,1076 ----
echo GeneratePage('MESSAGE', $html,
! sprintf(gettext ("Diff of %s."), $pagename), 0);
}
?>
|