diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-06-29 21:06:23 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-06-29 21:06:23 -0300 |
commit | 36e1c979b89bcc855a0b34c6ecc382c9c9e3c4da (patch) | |
tree | b222632d58b5c3b47d5a597e0e16c1bc2c206f76 /usr/local | |
parent | 9d8eeb2f01829e17c25fafd04420f5c04c917698 (diff) | |
download | pfsense-36e1c979b89bcc855a0b34c6ecc382c9c9e3c4da.zip pfsense-36e1c979b89bcc855a0b34c6ecc382c9c9e3c4da.tar.gz |
Fixed string format error
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/diag_pkglogs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/diag_pkglogs.php b/usr/local/www/diag_pkglogs.php index a7b65c9..bf7be9e 100755 --- a/usr/local/www/diag_pkglogs.php +++ b/usr/local/www/diag_pkglogs.php @@ -112,7 +112,7 @@ include("head.inc"); <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="2" class="listtopic"> - <?= gettext("Last") $nentries $curtab gettext("log entries") ?></td> + <?php printf(gettext("Last %s %s log entries"),$nentries,$curtab); ?></td> </tr> <?php $package =& $config['installedpackages']['package'][$apkgid]; |