0
I notice a problem when deleting a song from a saved playlist. The song gets removed from the database but the column "types" of the playlist is not updated. Therefore, it leads to problem displaying correct type of the song in the playlist. I found that a line is missing from playlist model which is located in ../com_muscol/models/playlists.php
Find line 212 which reads
Under that line, add this line line:
This should fix the problem. In case, table playlist has some records, you have to change the types field of your record to match with your playlist first to fix the old records.
Hope the developer add it in the later version. I feel so lazy to edit it again and again when updating the component. Thanks.
Find line 212 which reads
$data["songs"] = $final_string;
Under that line, add this line line:
$data["types"] = $final_string_types;
This should fix the problem. In case, table playlist has some records, you have to change the types field of your record to match with your playlist first to fix the old records.
Hope the developer add it in the later version. I feel so lazy to edit it again and again when updating the component. Thanks.
Responses (1)
-
Accepted Answer
0thanks for the heads up! we will see.-
Germinal Campsmore than a month agowe have added the fix to the official version. thanks!
-
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »