summaryrefslogtreecommitdiffstats
path: root/apps/bookmarks
diff options
context:
space:
mode:
authorTom Needham <needham.thomas@gmail.com>2012-03-10 18:18:58 +0000
committerTom Needham <needham.thomas@gmail.com>2012-03-10 18:18:58 +0000
commitd712d7f52c667e70edefcbd64c036afada678863 (patch)
treee730233606a5be00e6745fda35e51cb92acb2851 /apps/bookmarks
parent3ca76d24a9b27101661c454be84c7126315315d6 (diff)
downloadnextcloud-server-d712d7f52c667e70edefcbd64c036afada678863.tar.gz
nextcloud-server-d712d7f52c667e70edefcbd64c036afada678863.zip
Lots of fixes, improve copyRows() method and update settings page.
Diffstat (limited to 'apps/bookmarks')
-rw-r--r--apps/bookmarks/lib/migrate.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/bookmarks/lib/migrate.php b/apps/bookmarks/lib/migrate.php
index 7d8ad8bfc53..9493f2cae8e 100644
--- a/apps/bookmarks/lib/migrate.php
+++ b/apps/bookmarks/lib/migrate.php
@@ -11,10 +11,10 @@ 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'=>'id',
+ 'matchcol'=>'bookmark_id',
'matchval'=>$ids
);