Skip to content

Commit

Permalink
#776: Fix markup in case board is empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Dec 2, 2012
1 parent 8f220b6 commit dd8f2ad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions search.php
Expand Up @@ -828,8 +828,12 @@
echo "\t\t\t\t\t\t\t\t".'<label><input type="checkbox" name="forums[]" id="forum-'.$cur_forum['fid'].'" value="'.$cur_forum['fid'].'" />'.pun_htmlspecialchars($cur_forum['forum_name']).'</label>'."\n";
}

echo "\t\t\t\t\t\t\t\t".'</div>'."\n";
echo "\t\t\t\t\t\t\t".'</fieldset>'."\n";
if ($cur_category)
{
echo "\t\t\t\t\t\t\t\t".'</div>'."\n";
echo "\t\t\t\t\t\t\t".'</fieldset>'."\n";
}

echo "\t\t\t\t\t\t".'</div>'."\n";
echo "\t\t\t\t\t\t".'</div>'."\n";
}
Expand Down

0 comments on commit dd8f2ad

Please sign in to comment.