1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-20 17:54:25 +01:00

Correct typo

This commit is contained in:
Brice Maron 2012-10-10 21:14:58 +00:00
parent 8949278e83
commit 49f54450ab

View File

@ -41,7 +41,7 @@ class OC_Migration_Provider_Bookmarks extends OC_Migration_Provider{
// Import each bookmark, saving its id into the map
$sql = "INSERT INTO `*PREFIX*bookmarks`
(`url`, `title`, `user_id`, `public`, `added`, `lastmodified`) VALUES (?, ?, ?, ?, ?, ?)" ;
$query = OCP\DB::prepare($sql;
$query = OCP\DB::prepare($sql);
$query->execute(array(
$row['url'], $row['title'], $this->uid, $row['public'],
$row['added'], $row['lastmodified']