Skip to content

Commit

Permalink
Fixed the second issue from #566.
Browse files Browse the repository at this point in the history
  • Loading branch information
evert committed Nov 23, 2014
1 parent e977b95 commit b888026
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
ChangeLog
=========

2.1.2 (2014-??-??)
------------------

* #566: Another issue related to the migration script, which would cause
scheduling to not work well for events that were already added before the
migration.


2.1.1 (2014-11-22)
------------------

Expand Down
2 changes: 1 addition & 1 deletion bin/migrateto21.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
echo "Warning! Item with id $item[id] does NOT have a UID property and this is required.\n";
goto yoyo;
}
$uid = (string)$uid;
$uid = (string)$item->UID;
$stmt->execute([$uid, $row['id']]);
$counter++;

Expand Down
2 changes: 1 addition & 1 deletion lib/DAV/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ class Version {
/**
* Full version number
*/
const VERSION = '2.1.1';
const VERSION = '2.1.2';

}

0 comments on commit b888026

Please sign in to comment.