summaryrefslogtreecommitdiffstats
path: root/usr/local/www/pkg_mgr_installed.php
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2014-03-17 11:17:29 -0300
committerRenato Botelho <garga@FreeBSD.org>2014-03-17 11:17:29 -0300
commit7f7626ba444140848da559431688a5b38d3eeffd (patch)
treef336e0ea0103f1bcac53cd282cdfe2ff562da1c7 /usr/local/www/pkg_mgr_installed.php
parent9c3b8c6edba4ca1d6cedb21c85f17a9637e18a74 (diff)
parent8cd558b61b9c24ee109993d8e76ddc4870ffa4fa (diff)
downloadpfsense-7f7626ba444140848da559431688a5b38d3eeffd.zip
pfsense-7f7626ba444140848da559431688a5b38d3eeffd.tar.gz
Merge branch 'master-br' of https://github.com/ayvis/pfsense into ayvis-master-br
Diffstat (limited to 'usr/local/www/pkg_mgr_installed.php')
-rw-r--r--[-rwxr-xr-x]usr/local/www/pkg_mgr_installed.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/local/www/pkg_mgr_installed.php b/usr/local/www/pkg_mgr_installed.php
index f375d08..ecbd595 100755..100644
--- a/usr/local/www/pkg_mgr_installed.php
+++ b/usr/local/www/pkg_mgr_installed.php
@@ -141,18 +141,18 @@ include("head.inc");
if(strcmp($pkg['version'], $latest_package) > 0) {
$tdclass = "listbggrey";
if ($g['disablepackagehistory'])
- $pkgver = "<a>".gettext("Available") .": ". $latest_package . "<br/>";
+ $pkgver = "<a>".gettext("Available") .": ". $latest_package . "<br />";
else
- $pkgver = "<a target='_blank' href='$changeloglink'>".gettext("Available") .": ". $latest_package . "<br/>";
+ $pkgver = "<a target='_blank' href='$changeloglink'>".gettext("Available") .": ". $latest_package . "<br />";
$pkgver .= gettext("Installed") .": ". $pkg['version']. "</a>";
}
// we're running an older version of the package
if(strcmp($pkg['version'], $latest_package) < 0) {
$tdclass = "listbg";
if ($g['disablepackagehistory'])
- $pkgver = "<a><font color='#ffffff'>" . gettext("Available") .": ". $latest_package . "</font><br/>";
+ $pkgver = "<a><font color='#ffffff'>" . gettext("Available") .": ". $latest_package . "</font><br />";
else
- $pkgver = "<a target='_blank' href='$changeloglink'><font color='#ffffff'>" . gettext("Available") .": ". $latest_package . "<br/>";
+ $pkgver = "<a target='_blank' href='$changeloglink'><font color='#ffffff'>" . gettext("Available") .": ". $latest_package . "<br />";
$pkgver .= gettext("Installed") .": ". $pkg['version']."</font></a>";
}
// we're running the current version
@@ -201,7 +201,7 @@ include("head.inc");
<td class="listbg" style="overflow:hidden; text-align:justify;" <?=domTT_title(gettext("Click package info for more details about ".ucfirst($pkg['name'])." package."))?>>
<?=$currentvers[$pkg['name']]['descr'];?>
<?php if (! $g['disablepackageinfo']): ?>
- <br/><br/>
+ <br /><br />
<a target='_blank' href='<?=$pkginfolink?>' style='align:center;color:#ffffff; filter:Glow(color=#ff0000, strength=12);'><?=$pkginfo?></a>
<?php endif; ?>
</td>
@@ -209,7 +209,7 @@ include("head.inc");
<a href="pkg_mgr_install.php?mode=delete&amp;pkg=<?= $pkg['name']; ?>">
<img <?=domTT_title(gettext("Remove ".ucfirst($pkg['name'])." package."))?> src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" alt="delete" />
</a>
- <br/>
+ <br />
<a href="pkg_mgr_install.php?mode=reinstallpkg&amp;pkg=<?= $pkg['name']; ?>">
<img <?=domTT_title(gettext("Reinstall ".ucfirst($pkg['name'])." package."));?> src="./themes/<?= $g['theme']; ?>/images/icons/icon_reinstall_pkg.gif" width="17" height="17" border="0" alt="reinstall" />
</a>
OpenPOWER on IntegriCloud