From: Geoffrey T. D. <da...@us...> - 2001-03-02 00:15:30
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv19764/lib Modified Files: stdlib.php Log Message: StartTag(): minor beautification: get rid of extra spaces in start tags. Index: stdlib.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/stdlib.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** stdlib.php 2001/02/17 00:47:08 1.35 --- stdlib.php 2001/03/02 00:16:53 1.36 *************** *** 13,17 **** CookSpaces($pagearray) class Stack (push(), pop(), cnt(), top()) - SetHTMLOutputMode($newmode, $depth) UpdateRecentChanges($dbi, $pagename, $isnewpage) ParseAndLink($bracketlink) --- 13,16 ---- *************** *** 74,78 **** function StartTag($tag, $args = '') { ! $s = ''; if (is_array($args)) { --- 73,77 ---- function StartTag($tag, $args = '') { ! $s = "<$tag"; if (is_array($args)) { *************** *** 85,89 **** } } ! return "<$tag $s>"; } --- 84,88 ---- } } ! return "$s>"; } |