summaryrefslogtreecommitdiffstats
path: root/lib/migrate.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/migrate.php')
-rw-r--r--lib/migrate.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/migrate.php b/lib/migrate.php
index 28329a8170b..b8dbcc475ee 100644
--- a/lib/migrate.php
+++ b/lib/migrate.php
@@ -227,8 +227,8 @@ class OC_Migrate{
// Run the query for this match value (where x = y value)
$query = OC_DB::prepare( "SELECT * FROM *PREFIX*" . $options['table'] . " WHERE " . $options['matchcol'] . " LIKE ?" );
$results = $query->execute( array( $matchval ) );
- $return = self::insertData( $results, $options );
- //$return = array_merge( $return, $newreturns );
+ $newreturns = self::insertData( $results, $options );
+ $return = array_merge( $return, $newreturns );
}
} else {