use common_sql_now() instead of DB_DataObject_Cast
darcs-hash:20080825182338-84dde-ec0edef9469b294b7e23945f1bc7d810da988ed7.gz
This commit is contained in:
parent
55b6e17ee1
commit
cba4b50e44
|
@ -988,6 +988,10 @@ function common_date_iso8601($dt) {
|
|||
return $d->format('c');
|
||||
}
|
||||
|
||||
function common_sql_now() {
|
||||
return strftime('%Y-%m-%d %H:%M:%S', time());
|
||||
}
|
||||
|
||||
function common_redirect($url, $code=307) {
|
||||
static $status = array(301 => "Moved Permanently",
|
||||
302 => "Found",
|
||||
|
|
|
@ -345,7 +345,7 @@ class XMPPDaemon {
|
|||
# (or old)?
|
||||
$this->log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id);
|
||||
$orig = clone($qi);
|
||||
$qi->claimed = DB_DataObject_Cast::dateTime();
|
||||
$qi->claimed = common_sql_now();
|
||||
$result = $qi->update($orig);
|
||||
if ($result) {
|
||||
$this->log(LOG_INFO, 'claim succeeded.');
|
||||
|
@ -448,7 +448,7 @@ class XMPPDaemon {
|
|||
# working around some weird DB_DataObject behaviour
|
||||
$confirm->whereAdd(''); # clears where stuff
|
||||
$original = clone($confirm);
|
||||
$confirm->claimed = DB_DataObject_Cast::dateTime();
|
||||
$confirm->claimed = common_sql_now();
|
||||
$result = $confirm->update($original);
|
||||
if ($result) {
|
||||
$this->log(LOG_INFO, 'Succeeded in claim! '. $result);
|
||||
|
|
Loading…
Reference in New Issue
Block a user