Properly format the share expiration time for the database, fixes bug oc-1779

This commit is contained in:
Michael Gapczynski 2012-09-25 23:54:46 -04:00
parent 2bdf89f4d4
commit f967bfc956
1 changed files with 10 additions and 5 deletions

View File

@ -418,12 +418,17 @@ class Share {
}
public static function setExpirationDate($itemType, $itemSource, $date) {
if ($item = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) {
error_log('setting');
if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) {
if (!empty($items)) {
$date = new \DateTime($date);
$date = date('Y-m-d H:i', $date->format('U') - $date->getOffset());
$query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?');
foreach ($items as $item) {
$query->execute(array($date, $item['id']));
}
return true;
}
}
return false;
}