* Include license output in plugin listing (onli)

This commit is contained in:
Garvin Hicking 2010-06-27 17:51:48 +00:00
parent 8e77abcf16
commit 2fffe38c91
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,8 @@
Version 1.6 ()
------------------------------------------------------------------------
* Include license output in plugin listing (onli)
* Fix karma rating plugin missing the text translation for a
specific point area

View File

@ -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 />