diff --git a/ykval-synclib.php b/ykval-synclib.php index 7e8645d..1bf5ef2 100644 --- a/ykval-synclib.php +++ b/ykval-synclib.php @@ -440,13 +440,13 @@ class SyncLib $this->log(LOG_NOTICE, "Local server out of sync"); } - if ($this->CountersEqual($resParams, $localParams) && + if ($this->countersEqual($resParams, $localParams) && $resParams['nonce']!=$localParams['nonce']) { $this->log(LOG_NOTICE, "Servers out of sync. Nonce differs. "); } - if ($this->CountersEqual($resParams, $localParams) && + if ($this->countersEqual($resParams, $localParams) && $resParams['modified']!=$localParams['modified']) { $this->log(LOG_NOTICE, "Servers out of sync. Modified differs. "); }