diff --git a/etc/inc/services.inc b/etc/inc/services.inc index 049cc282a2..b6f9275dfe 100644 --- a/etc/inc/services.inc +++ b/etc/inc/services.inc @@ -31,7 +31,6 @@ /* include all configuration functions */ require_once("functions.inc"); -require_once("dyndns.class"); function services_dhcpd_configure() { global $config, $g; @@ -411,6 +410,9 @@ function services_dyndns_configure() { return; } } + + /* load up the dyndns.class */ + require_once("dyndns.class"); $dns = new updatedns($dnsService = $config['dyndns']['type'], $dnsHost = $config['dyndns']['host'], @@ -1118,4 +1120,4 @@ EOD; mwexec_bg("/usr/local/sbin/olsrd -f {$g['varetc_path']}/{$interface}_olsr.conf"); } -?> \ No newline at end of file +?>