diff options
author | Anika Henke <anika@selfthinker.org> | 2011-04-16 12:02:38 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-04-16 12:02:38 +0100 |
commit | e8af313f1b6657e3a1b32d6fdd40bc0133a2d371 (patch) | |
tree | 24422d209dd0614ae86486134c6511d43376ea7c | |
parent | 116065d2d8aa1613c8b90b01606efacc4fe846d1 (diff) | |
download | rpg-e8af313f1b6657e3a1b32d6fdd40bc0133a2d371.tar.gz rpg-e8af313f1b6657e3a1b32d6fdd40bc0133a2d371.tar.bz2 |
fixed invalid html in diff options
-rw-r--r-- | inc/html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/html.php b/inc/html.php index fcfa54b6c..27f862219 100644 --- a/inc/html.php +++ b/inc/html.php @@ -1004,7 +1004,7 @@ function html_diff($text='',$intro=true,$type=null){ if($intro) print p_locale_xhtml('diff'); if (!$text) { - ptln('<p class="difflink">'); + ptln('<div class="diffoptions">'); $form = new Doku_Form(array('action'=>wl())); $form->addHidden('id',$ID); @@ -1030,8 +1030,8 @@ function html_diff($text='',$intro=true,$type=null){ 'rev2[1]' => $r_rev, 'difftype' => $type, )); - ptln('<br /><a class="wikilink1" href="'.$diffurl.'">'.$lang['difflink'].'</a>'); - ptln('</p>'); + ptln('<p><a class="wikilink1" href="'.$diffurl.'">'.$lang['difflink'].'</a></p>'); + ptln('</div>'); } ?> <table class="diff diff_<?php echo $type?>"> |