1
0

* Include license output in plugin listing (onli)

This commit is contained in:
Garvin Hicking
2010-06-27 17:51:48 +00:00
parent 1a1e92a86a
commit 0eb2d01132
2 changed files with 8 additions and 0 deletions
docs
include/admin

@ -73,6 +73,7 @@ if (isset($_GET['serendipity']['plugin_to_conf'])) {
$name = htmlspecialchars($bag->get('name'));
$desc = htmlspecialchars($bag->get('description'));
$license = htmlspecialchars($bag->get('license'));
$documentation = $bag->get('website');
@ -169,6 +170,11 @@ if (isset($_GET['serendipity']['plugin_to_conf'])) {
?>
</td>
</tr>
<?php
if (!empty($license)) {
echo '<th>'.MEDIA_PROPERTY_COPYRIGHT.'</th><td>'.$license.'</td>';
}
?>
</table>
<br />