1
0

Move plugin name in plugin description, add styling

This commit is contained in:
Matthias Mees
2014-03-11 11:49:31 +01:00
parent cc60b9e32b
commit 1927da75c1
2 changed files with 9 additions and 3 deletions

View File

@ -152,8 +152,9 @@ function show_plugins($event_only = false, $sidebars = null)
$plugin->introspect($bag);
$name = htmlspecialchars($bag->get('name'));
$desc = htmlspecialchars($bag->get('description'));
$desc .= '<span class="block_level">' . VERSION . ': ' . $bag->get('version') . ' <var class="perm_name">['.$cname[0].']</var></span>';
$desc = '<var class="perm_name">['.$cname[0].']</var>';
$desc .= htmlspecialchars($bag->get('description'));
$desc .= '<span class="block_level">' . VERSION . ': ' . $bag->get('version') . '</span>';
$title = serendipity_plugin_api::get_plugin_title($plugin, '[' . $name . ']');