- Patch #9819 by JonBob: fixed XHTML bug - make sure the <div> is always closed.

4.5.x
Dries Buytaert 2004-08-06 20:18:25 +00:00
parent 9bbdb71ee4
commit 9bad647d76
1 changed files with 1 additions and 1 deletions

View File

@ -715,8 +715,8 @@ function search_form($action = NULL, $keys = NULL, $options = NULL) {
$output .= ' <input type="checkbox" name="edit[type]['. $name .']" '. ($edit['type'][$name] ? ' checked="checked"' : '') .' /> '. t($name);
}
}
$output .= '</div>';
}
$output .= '</div>';
return form($output, 'post', $action);
}