From: Nico Kaiser Date: Tue, 18 Jun 2013 22:04:31 +0000 (+0200) Subject: minor fixes X-Git-Tag: v1.0.0~10 X-Git-Url: http://git.neszt.hu/?a=commitdiff_plain;h=a6a62aaa5beadef69822486309675ea567997291;p=Dyndns%2F.git minor fixes --- diff --git a/web/lib/Dyndns/Hosts.php b/web/lib/Dyndns/Hosts.php index 211aba7..0d59e7f 100644 --- a/web/lib/Dyndns/Hosts.php +++ b/web/lib/Dyndns/Hosts.php @@ -60,6 +60,7 @@ class Hosts $this->debug('Update: ' . $hostname . ':' . $ip); $this->updates[$hostname] = $ip; + return true; } /** diff --git a/web/lib/Dyndns/Server.php b/web/lib/Dyndns/Server.php index 1512aee..6acfbe5 100644 --- a/web/lib/Dyndns/Server.php +++ b/web/lib/Dyndns/Server.php @@ -181,6 +181,6 @@ class Server public function debug($message) { - $this->debugBuffer .= @date('M j G:i:s') . ' Dyndns: ' . $message . "\n"; + $this->debugBuffer .= @date('M j H:i:s') . ' Dyndns: ' . $message . "\n"; } }