Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MDL-40759 icons: Fix the core_renderer::spacer() parameters
  • Loading branch information
mudrd8mz authored and danpoltawski committed Mar 22, 2017
1 parent ee82b48 commit b4ef04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/renderer.php
Expand Up @@ -1615,7 +1615,7 @@ public function plugins_control_panel(core_plugin_manager $pluginman, array $opt
if ($this->page->theme->resolve_image_location('icon', $plugin->type . '_' . $plugin->name)) {
$icon = $this->output->pix_icon('icon', '', $plugin->type . '_' . $plugin->name, array('class' => 'icon pluginicon'));
} else {
$icon = $this->output->spacer('spacer');
$icon = $this->output->spacer();
}
$status = $plugin->get_status();
$row->attributes['class'] .= ' status-'.$status;
Expand Down

0 comments on commit b4ef04e

Please sign in to comment.