diff options
author | Anika Henke <a.c.henke@arcor.de> | 2006-03-08 23:50:06 +0100 |
---|---|---|
committer | Anika Henke <a.c.henke@arcor.de> | 2006-03-08 23:50:06 +0100 |
commit | daf4ca4eab09b934b46fb35293fcbfd854571ed4 (patch) | |
tree | 7cd77377374da36f768ade8e83bdf013c1e2c62b /inc | |
parent | 58dde80d4add67c5251ac3f0107968131fb471b3 (diff) | |
download | rpg-daf4ca4eab09b934b46fb35293fcbfd854571ed4.tar.gz rpg-daf4ca4eab09b934b46fb35293fcbfd854571ed4.tar.bz2 |
killed some borders, widths and other strictness bugs
darcs-hash:20060308225006-d5083-d273d41551fee37d28442beef847eb57891ba73e.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/html.php | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/inc/html.php b/inc/html.php index 25ac1e7ce..e21047cda 100644 --- a/inc/html.php +++ b/inc/html.php @@ -453,7 +453,6 @@ function html_revisions(){ print ' <a href="'.wl($ID,"rev=$rev,do=diff").'">'; $p = array(); $p['src'] = DOKU_BASE.'lib/images/diff.png'; - $p['border'] = 0; $p['width'] = 15; $p['height'] = 11; $p['title'] = $lang['diff']; @@ -513,7 +512,6 @@ function html_recent($first=0){ print '<a href="'.wl($recent['id'],"do=diff").'">'; $p = array(); $p['src'] = DOKU_BASE.'lib/images/diff.png'; - $p['border'] = 0; $p['width'] = 15; $p['height'] = 11; $p['title'] = $lang['diff']; @@ -525,7 +523,6 @@ function html_recent($first=0){ print '<a href="'.wl($recent['id'],"do=revisions").'">'; $p = array(); $p['src'] = DOKU_BASE.'lib/images/history.png'; - $p['border'] = 0; $p['width'] = 12; $p['height'] = 14; $p['title'] = $lang['btn_revs']; @@ -768,14 +765,14 @@ function html_diff($text='',$intro=true){ $tdf = new TableDiffFormatter(); if($intro) print p_locale_xhtml('diff'); ?> - <table class="diff" width="100%"> + <table class="diff"> <tr> - <td colspan="2" width="50%" class="diff-header"> + <th colspan="2"> <?php echo $left?> - </td> - <td colspan="2" width="50%" class="diff-header"> + </th> + <th colspan="2"> <?php echo $right?> - </td> + </th> </tr> <?php echo $tdf->format($df)?> </table> |