From: Michael J. Rubinsky Date: Mon, 5 Apr 2010 21:25:39 +0000 (-0400) Subject: this method lives in the state object now X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8119a15cc600627b55bf5d9f6288b92a0f6cd1e7;p=horde.git this method lives in the state object now --- diff --git a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php index 0cf1f0385..040c96fce 100644 --- a/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php +++ b/framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php @@ -108,7 +108,7 @@ class Horde_ActiveSync_Request_Ping extends Horde_ActiveSync_Request_Base for ($n = 0; $n < 10; $n++) { //check the remote wipe status if ($this->_provisioning === true) { - $rwstatus = $this->_driver->getDeviceRWStatus($this->_devId); + $rwstatus = $state->getDeviceRWStatus($this->_devId); if ($rwstatus == SYNC_PROVISION_RWSTATUS_PENDING || $rwstatus == SYNC_PROVISION_RWSTATUS_WIPED) { $this->_statusCode = self::STATUS_FOLDERSYNCREQD; break;