Skip to content
Snippets Groups Projects
Commit 4ed21aca authored by Rasmus Fuhse's avatar Rasmus Fuhse
Browse files

re #71

parent 469fab4e
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
<tr>
<th><?= _("Name") ?></th>
<th><?= _("Letztes Update") ?></th>
<th><?= _("Maximale Stud.IP-Version") ?></th>
<th></th>
<th></th>
</tr>
......@@ -28,6 +29,17 @@
?>
<?= date("j.n.Y, G:i", $chdate) ?> <?= _("Uhr") ?>
</td>
<td>
<?
$max = "0.1";
foreach ($marketplugin->releases as $release) {
if (version_compare($max, $release['studip_max_version'], "<")) {
$max = $release['studip_max_version'];
}
echo htmlReady($max === "0.1" ? "?" : $max);
}
?>
</td>
<td>
<? if (!$marketplugin['publiclyvisible']) : ?>
<?= Assets::img("icons/20/grey/lock-locked.png.png", array('title' => _("Plugin ist nicht ffentlich"))) ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment