* Include license output in plugin listing (onli)
This commit is contained in:
parent
8e77abcf16
commit
2fffe38c91
@ -3,6 +3,8 @@
|
|||||||
Version 1.6 ()
|
Version 1.6 ()
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
* Include license output in plugin listing (onli)
|
||||||
|
|
||||||
* Fix karma rating plugin missing the text translation for a
|
* Fix karma rating plugin missing the text translation for a
|
||||||
specific point area
|
specific point area
|
||||||
|
|
||||||
|
@ -73,6 +73,7 @@ if (isset($_GET['serendipity']['plugin_to_conf'])) {
|
|||||||
|
|
||||||
$name = htmlspecialchars($bag->get('name'));
|
$name = htmlspecialchars($bag->get('name'));
|
||||||
$desc = htmlspecialchars($bag->get('description'));
|
$desc = htmlspecialchars($bag->get('description'));
|
||||||
|
$license = htmlspecialchars($bag->get('license'));
|
||||||
|
|
||||||
$documentation = $bag->get('website');
|
$documentation = $bag->get('website');
|
||||||
|
|
||||||
@ -169,6 +170,11 @@ if (isset($_GET['serendipity']['plugin_to_conf'])) {
|
|||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<?php
|
||||||
|
if (!empty($license)) {
|
||||||
|
echo '<th>'.MEDIA_PROPERTY_COPYRIGHT.'</th><td>'.$license.'</td>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
</table>
|
</table>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user