diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-03-11 22:09:16 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-03-11 22:09:16 +0000 |
commit | fa5a5649c6f7a08b319b15bd537d898e5e77ee98 (patch) | |
tree | a7a533a45aeeff30e73a2c219284b6efc41c3e23 /apps | |
parent | d712d7f52c667e70edefcbd64c036afada678863 (diff) | |
download | nextcloud-server-fa5a5649c6f7a08b319b15bd537d898e5e77ee98.tar.gz nextcloud-server-fa5a5649c6f7a08b319b15bd537d898e5e77ee98.zip |
Fix copyRows() and sqlite connection
Diffstat (limited to 'apps')
-rw-r--r-- | apps/bookmarks/lib/migrate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/bookmarks/lib/migrate.php b/apps/bookmarks/lib/migrate.php index 9493f2cae8e..6e0b5c4cc49 100644 --- a/apps/bookmarks/lib/migrate.php +++ b/apps/bookmarks/lib/migrate.php @@ -3,7 +3,7 @@ class OC_Migrate_Provider_Bookmarks extends OC_Migrate_Provider{ // Create the xml for the user supplied function export( $uid ){ - + OC_Log::write('migration','starting export for bookmarks',OC_Log::INFO); $options = array( 'table'=>'bookmarks', 'matchcol'=>'user_id', @@ -11,7 +11,7 @@ class OC_Migrate_Provider_Bookmarks extends OC_Migrate_Provider{ 'idcol'=>'id' ); $ids = OC_Migrate::copyRows( $options ); - $ids = array('1'); + $options = array( 'table'=>'bookmarks_tags', 'matchcol'=>'bookmark_id', |