diff --git a/Pages/tune/uuid.php b/Pages/tune/uuid.php index c2522c8..9ba917a 100644 --- a/Pages/tune/uuid.php +++ b/Pages/tune/uuid.php @@ -100,7 +100,7 @@ foreach($tuneParts as $tunePartDetails) spec: 'Tunes AS T_T', cond: 'T_TP.TuneID=T_T.ID', ) - ->where(cond: 'T.TunePartA=:__tune_part_id__') + ->where(cond: 'T.TunePartA LIKE :__tune_part_id__') ->bindValue(name: '__tune_part_id__', value: $tunePartDetails['ID']) ); $similarTunesB = $db->RunSelect( @@ -122,7 +122,7 @@ foreach($tuneParts as $tunePartDetails) spec: 'Tunes AS T_T', cond: 'T_TP.TuneID=T_T.ID', ) - ->where(cond: 'T.TunePartB=:__tune_part_id__') + ->where(cond: 'T.TunePartB LIKE :__tune_part_id__') ->bindValue(name: '__tune_part_id__', value: $tunePartDetails['ID']) ); $builder = [];