From c4680ae2dada8d2230fe6eba92fc24eed4853fb4 Mon Sep 17 00:00:00 2001 From: jim-p Date: Sun, 10 Feb 2013 21:14:22 -0500 Subject: [PATCH] Whoops remove copypasta --- etc/inc/system.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 4c3844051a..e15c28f6ca 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -1243,8 +1243,8 @@ function system_ntp_configure($start_ntpd=true) { $ntpcfg .= "\n\n# Upstream Servers\n"; /* foreach through servers and write out to ntpd.conf */ -- foreach (explode(' ', $config['system']['timeservers']) as $ts) -- $ntpcfg .= "server {$ts} iburst maxpoll 9\n"; + foreach (explode(' ', $config['system']['timeservers']) as $ts) + $ntpcfg .= "server {$ts} iburst maxpoll 9\n"; $ntpcfg .= "enable monitor\n"; $ntpcfg .= "enable stats\n";