Browse Source

Update uuid.php

master
Cerys 1 month ago
parent
commit
4932e07898
  1. 4
      Pages/tune/uuid.php

4
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 = [];

Loading…
Cancel
Save