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', spec: 'Tunes AS T_T',
cond: 'T_TP.TuneID=T_T.ID', 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']) ->bindValue(name: '__tune_part_id__', value: $tunePartDetails['ID'])
); );
$similarTunesB = $db->RunSelect( $similarTunesB = $db->RunSelect(
@ -122,7 +122,7 @@ foreach($tuneParts as $tunePartDetails)
spec: 'Tunes AS T_T', spec: 'Tunes AS T_T',
cond: 'T_TP.TuneID=T_T.ID', 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']) ->bindValue(name: '__tune_part_id__', value: $tunePartDetails['ID'])
); );
$builder = []; $builder = [];

Loading…
Cancel
Save