Merge pull request #4228 from owncloud/fix-3836

app migrate: Use = instead of LIKE as described in the comment above.
This commit is contained in:
Thomas Müller 2013-08-04 15:00:24 -07:00
commit 0ae2bb77ba
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class OC_Migration_Content{
foreach( $options['matchval'] as $matchval ) {
// Run the query for this match value (where x = y value)
$sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?';
$sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` = ?';
$query = OC_DB::prepare( $sql );
$results = $query->execute( array( $matchval ) );
$newreturns = $this->insertData( $results, $options );