summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Beaver <sbeaver@netgate.com>2017-02-20 10:28:22 -0500
committerSteve Beaver <sbeaver@netgate.com>2017-02-20 10:28:22 -0500
commit9267c6c95c0e9a545365501a7100797bf3eef12d (patch)
tree3e24f471e7cdf7cf3d18c69864d92f86c972ce43
parent32048df91ac1fb30a0ca588308ffe671d8146554 (diff)
downloadpfsense-9267c6c95c0e9a545365501a7100797bf3eef12d.zip
pfsense-9267c6c95c0e9a545365501a7100797bf3eef12d.tar.gz
Remove newline in error msg
-rw-r--r--src/usr/local/www/interfaces_assign.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/interfaces_assign.php b/src/usr/local/www/interfaces_assign.php
index 9ad6379..f949df9 100644
--- a/src/usr/local/www/interfaces_assign.php
+++ b/src/usr/local/www/interfaces_assign.php
@@ -389,7 +389,7 @@ if (isset($_REQUEST['add']) && isset($_REQUEST['if_add'])) {
} else if (link_interface_to_gif($id)) {
$input_errors[] = gettext("The interface is part of a gif tunnel. Please delete the tunnel to continue");
} else if (interface_has_queue($id)) {
- $input_errors[] = gettext("The interface has a traffic shaper queue configured.\nPlease remove all queues on the interface to continue.\n");
+ $input_errors[] = gettext("The interface has a traffic shaper queue configured.\nPlease remove all queues on the interface to continue.");
} else {
unset($config['interfaces'][$id]['enable']);
$realid = get_real_interface($id);
OpenPOWER on IntegriCloud