diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-08-23 15:38:22 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-08-23 15:38:22 -0400 |
commit | b06b9759b5876a783353a190f8f1a47fc18b72c9 (patch) | |
tree | fcd2b1e950e85fb3d2356825be195272aa4e840b | |
parent | 62d93213763fb9bf90fa3671eab13da4e464088c (diff) | |
download | pfsense-b06b9759b5876a783353a190f8f1a47fc18b72c9.zip pfsense-b06b9759b5876a783353a190f8f1a47fc18b72c9.tar.gz |
Remove leading space
-rw-r--r-- | etc/inc/services.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/services.inc b/etc/inc/services.inc index ddd6552..3faf99f 100644 --- a/etc/inc/services.inc +++ b/etc/inc/services.inc @@ -1,4 +1,4 @@ -<?php +f<?php /* $Id$ */ /* services.inc @@ -99,7 +99,7 @@ function services_dhcpd_configure() { foreach ($dhcpdcfg as $dhcpif => $dhcpifconf) { if($dhcpifconf['numberoptions']['item']) { foreach($dhcpifconf['numberoptions']['item'] as $item) { - $custoptions .= " option custom-opt-$optcounter code {$item['number']} = text;\n"; + $custoptions .= "option custom-opt-$optcounter code {$item['number']} = text;\n"; $optcounter++; } } |