Skip to content

Commit

Permalink
xhtml fix - misplaced tags
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Nov 30, 2006
1 parent d420525 commit 8ddbd7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/adminlib.php
Expand Up @@ -2020,8 +2020,8 @@ function output_html() {
$count = 0;

foreach($this->items as $key => $value) {
if ($count % 15 == 0) {
$return .= '</div></td><td valign="top" align="right">';
if ($count % 15 == 0 and $count != 0) {
$return .= '</td><td valign="top" align="right">';
}

$return .= ($value == '' ? get_string($key,'editor') : '<img width="18" height="18" src="' . $CFG->wwwroot . '/lib/editor/htmlarea/images/' . $value . '" alt="' . get_string($key,'editor') . '" title="' . get_string($key,'editor') . '" />') . '&nbsp;';
Expand Down

0 comments on commit 8ddbd7a

Please sign in to comment.