From: Carsten K. <car...@us...> - 2002-01-02 06:35:03
|
Update of /cvsroot/phpwiki/phpwiki/templates In directory usw-pr-cvs1:/tmp/cvs-serv26208 Modified Files: browse.html Log Message: fixed date not showing up with printer stylesheet in mozilla... for real this time Index: browse.html =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/templates/browse.html,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** browse.html 2002/01/02 03:50:33 1.35 --- browse.html 2002/01/02 06:35:01 1.36 *************** *** 38,42 **** <div class="wikitext">${CONTENT}</div> <hr class="ignore" noshade="noshade" /> ! <form action='<?php echo WikiURL(_("TitleSearch")); ?>' method="get" accept-charset="${CHARSET}"> <?php if ($IS_CURRENT) { ?> <?php printf(_("Last edited on %s."),"${LASTMODIFIED}"); ?> --- 38,42 ---- <div class="wikitext">${CONTENT}</div> <hr class="ignore" noshade="noshade" /> ! <?php if ($IS_CURRENT) { ?> <?php printf(_("Last edited on %s."),"${LASTMODIFIED}"); ?> *************** *** 44,47 **** --- 44,48 ---- <?php printf(_("Version %s, saved on %s."),"${VERSION}","${LASTMODIFIED}"); ?> <?php } ?> + <form action='<?php echo WikiURL(_("TitleSearch")); ?>' method="get" accept-charset="${CHARSET}"> <hr color="black" class="toolbar" /> <!-- I would like not to have to use these tables, and managed to |