Index: branches/5.3.x/core/units/helpers/curl_helper.php =================================================================== diff -u -N -r15911 -r15928 --- branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15911) +++ branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15928) @@ -1,6 +1,6 @@ $this->Application->isAdminUser ? 1 : 0, 'PageData' => implode("\n", $page_data), 'RequestData' => $this->requestData, - 'RequestDate' => adodb_mktime(), + 'RequestDate' => time(), ); $this->Conn->doInsert($fields_hash, TABLE_PREFIX . 'CurlLog'); @@ -506,7 +506,7 @@ if ( $this->debugMode ) { $fields_hash = Array ( 'ResponseData' => $this->lastResponse, - 'ResponseDate' => adodb_mktime(), + 'ResponseDate' => time(), 'ResponseHttpCode' => $this->lastHTTPCode, 'CurlError' => $this->lastErrorCode != 0 ? '#' . $this->lastErrorCode . ' (' . $this->lastErrorMsg . ')' : '', );