Memcached_DataObject extensions got their update functions more consistent

This commit is contained in:
Mikael Nordfeldth
2013-10-28 19:36:05 +01:00
parent fa91bc7132
commit 3ba6374b9d
9 changed files with 40 additions and 51 deletions

View File

@@ -191,16 +191,6 @@ class HubSub extends Managed_DataObject
return parent::insert();
}
/**
* Update wrapper; transparently update modified column.
* @return boolean success
*/
function update($old=null)
{
$this->modified = common_sql_now();
return parent::update($old);
}
/**
* Schedule delivery of a 'fat ping' to the subscriber's callback
* endpoint. If queues are disabled, this will run immediately.