resolution bug

This commit is contained in:
2024-06-19 12:03:56 +02:00
parent 816c56602d
commit 84070e8751
3 changed files with 5 additions and 4 deletions

View File

@@ -10,8 +10,8 @@
<?php foreach ($playlists as $playlist){ ?>
<div class="playlist-option">
<label>
<?php if($this->model_music->SongInThisPlaylist($id,$playlist->playlistid)){ ?>
<input type="radio" name="playlist_id" value="<?= $playlist->playlistid ?>">
<?php if($this->model_music->SongInThisPlaylist($id,$playlist->playlistId)){ ?>
<input type="radio" name="playlist_id" value="<?= $playlist->playlistId ?>">
<?= $playlist->name ?>
<?php } ?>
</label>