Skip to content

Commit

Permalink
fixed invalid html in diff options
Browse files Browse the repository at this point in the history
  • Loading branch information
selfthinker committed Apr 16, 2011
1 parent 116065d commit e8af313
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/html.php
Expand Up @@ -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);
Expand All @@ -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?>">
Expand Down

0 comments on commit e8af313

Please sign in to comment.