diff options
author | jim-p <jimp@pfsense.org> | 2011-07-14 15:18:18 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2011-07-14 15:18:18 -0400 |
commit | 84bc8eb79a5f03f6dfc511508b1c3a5b35f916d8 (patch) | |
tree | 6021c139b5aa599285c4562b0d02c6bf19c57223 /etc/inc/pkg-utils.inc | |
parent | 87f0f42c3230ad7ad15b14a8a9d63c58f8b2e379 (diff) | |
download | pfsense-84bc8eb79a5f03f6dfc511508b1c3a5b35f916d8.zip pfsense-84bc8eb79a5f03f6dfc511508b1c3a5b35f916d8.tar.gz |
Fix missing " in gettext line
Diffstat (limited to 'etc/inc/pkg-utils.inc')
-rw-r--r-- | etc/inc/pkg-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/pkg-utils.inc b/etc/inc/pkg-utils.inc index 6891eab..ecd0f1c 100644 --- a/etc/inc/pkg-utils.inc +++ b/etc/inc/pkg-utils.inc @@ -553,7 +553,7 @@ function install_package($package, $pkg_info = "") { $fetchto = substr(strrchr($pkg_info['config_file'], '/'), 1); download_file_with_progress_bar($pkg_info['config_file'], '/usr/local/pkg/' . $fetchto); if(!file_exists('/usr/local/pkg/' . $fetchto)) { - pkg_debug(gettext("ERROR! Unable to fetch package configuration file. Aborting installation.") . \n"); + pkg_debug(gettext("ERROR! Unable to fetch package configuration file. Aborting installation.") . "\n"); if($pkg_interface == "console") print "\n" . gettext("ERROR! Unable to fetch package configuration file. Aborting package installation.") . "\n"; else { |