summaryrefslogtreecommitdiffstats
path: root/etc/inc/voucher.inc
diff options
context:
space:
mode:
authorVinicius Coque <vinicius.coque@bluepex.com>2011-07-18 15:33:28 -0300
committerVinicius Coque <vinicius.coque@bluepex.com>2011-07-18 15:33:28 -0300
commitb1e4005f9fd3c3e4e7ef86cdf756cfc84c3f6efc (patch)
treecb1cb173d468581e832a78849e7084457a2a9533 /etc/inc/voucher.inc
parent3f48162fdea51aa7a9ff64e4ebf4cc777dc9f029 (diff)
downloadpfsense-b1e4005f9fd3c3e4e7ef86cdf756cfc84c3f6efc.zip
pfsense-b1e4005f9fd3c3e4e7ef86cdf756cfc84c3f6efc.tar.gz
removes variables concatenation on gettext strings
Diffstat (limited to 'etc/inc/voucher.inc')
-rw-r--r--etc/inc/voucher.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/voucher.inc b/etc/inc/voucher.inc
index dc95092..57cc377 100644
--- a/etc/inc/voucher.inc
+++ b/etc/inc/voucher.inc
@@ -632,7 +632,7 @@ function voucher_log($priority, $message) {
define_syslog_variables();
$message = trim($message);
openlog("logportalauth", LOG_PID, LOG_LOCAL4);
- syslog($priority, gettext("Voucher: ") . $message);
+ syslog($priority, sprintf(gettext("Voucher: %s"),$message));
closelog();
}
OpenPOWER on IntegriCloud