fixes for tabular settings

This commit is contained in:
Shish 2020-07-06 17:56:55 +01:00
parent cbe1f792f9
commit e6ec2340af
2 changed files with 2 additions and 3 deletions

View file

@ -74,7 +74,7 @@ class SetupBlock extends Block
}
public function start_table_row()
{
$this->body .= "</tr>";
$this->body .= "<tr>";
}
public function end_table_row()
{

View file

@ -314,9 +314,8 @@ class UserPage extends Extension
"Rating",
true
);
$sb->end_table();
}
$sb->end_table();
$event->panel->add_block($sb);
}