mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
xhtml fix - misplaced tags
This commit is contained in:
parent
d4205253d0
commit
8ddbd7a6d0
1 changed files with 2 additions and 2 deletions
|
@ -2020,8 +2020,8 @@ class admin_setting_special_editorhidebuttons extends admin_setting {
|
|||
$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') . '" />') . ' ';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue