Fix typo.

This commit is contained in:
Andrew McMillan 2013-04-16 09:57:38 +12:00
parent 8a5d641297
commit f67780c461

View File

@ -191,7 +191,7 @@ EOSQL;
$qry->QDo($sql, $sqlargs);
// Delete the sync tokens...
$sql = 'DELETE FROM sync_token WHERE collection_id IN (:source_id, :archive_id)';
$sql = 'DELETE FROM sync_tokens WHERE collection_id IN (:source_id, :archive_id)';
$qry->QDo($sql, $sqlargs);
// Delete the sync_changes...
@ -204,4 +204,4 @@ EOSQL;
$cache->delete( $cache_ns, null );
$cache_ns = 'collection-'.preg_replace( '{/[^/]*$}', '/', $collection_archive);
$cache->delete( $cache_ns, null );
}
}