From d94f45680c6cae83a65737b1b9603f39d7ae05b2 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 7 Aug 2005 15:47:26 +0200 Subject: xhtml fix for recent changes #499 darcs-hash:20050807134726-7ad00-371965dc6bea32e86221e93b3a677bc1047fb089.gz --- inc/html.php | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/inc/html.php b/inc/html.php index 7768a1005..ede4c325c 100644 --- a/inc/html.php +++ b/inc/html.php @@ -414,7 +414,15 @@ function html_revisions(){ print $date; print ' '; - print ''; + $p = array(); + $p['src'] = DOKU_BASE.'lib/images/diff.png'; + $p['border'] = 0; + $p['width'] = 15; + $p['height'] = 11; + $p['title'] = $lang['diff']; + $p['alt'] = $lang['diff']; + $att = buildAttributes($p); + print ""; print ' '; print ''.$ID.' '; @@ -466,11 +474,27 @@ function html_recent($first=0){ print $date.' '; print ''; - print ''; + $p = array(); + $p['src'] = DOKU_BASE.'lib/images/diff.png'; + $p['border'] = 0; + $p['width'] = 15; + $p['height'] = 11; + $p['title'] = $lang['diff']; + $p['alt'] = $lang['diff']; + $att = buildAttributes($p); + print ""; print ' '; print ''; - print ''; + $p = array(); + $p['src'] = DOKU_BASE.'lib/images/history.png'; + $p['border'] = 0; + $p['width'] = 12; + $p['height'] = 14; + $p['title'] = $lang['btn_revs']; + $p['alt'] = $lang['btn_revs']; + $att = buildAttributes($p); + print ""; print ' '; print html_wikilink($id,$conf['useheading']?NULL:$id); -- cgit v1.2.3