Revision d2946062
Added by Ermal LUÇI over 15 years ago
etc/inc/services.inc | ||
---|---|---|
549 | 549 |
|
550 | 550 |
function services_dyndns_configure_client($conf) { |
551 | 551 |
|
552 |
if (!isset($conf['enable'])) |
|
553 |
continue; |
|
554 |
|
|
552 | 555 |
/* load up the dyndns.class */ |
553 | 556 |
require_once("dyndns.class"); |
554 | 557 |
|
... | ... | |
578 | 581 |
echo "Starting DynDNS clients..."; |
579 | 582 |
|
580 | 583 |
foreach ($dyndnscfg as $dyndns) { |
581 |
if (!isset($dyndns['enable'])) |
|
582 |
continue; |
|
583 |
|
|
584 | 584 |
if (!empty($int) && $int != $dyndns['interface']) |
585 | 585 |
continue; |
586 | 586 |
|
Also available in: Unified diff
Move checking if dyndns is enabled to the proper place.