correction du bug de la vue artists_list.php

This commit is contained in:
2024-05-23 20:06:21 +02:00
parent c663ce4256
commit 29d365f179
2 changed files with 3 additions and 3 deletions

View File

@@ -29,12 +29,12 @@ class Artiste extends CI_Controller {
if($logged == true){
$this->load->view('layout/header_dark');
$this->load->view('layout/header_logged_dark');
$this->load->view('artists_list', $data);
$this->load->view('artiste_details', $data);
$this->load->view('layout/footer_dark');
} else {
$this->load->view('layout/header_dark');
$this->load->view('layout/header_not_logged_dark');
$this->load->view('artists_list', $data);
$this->load->view('artiste_details', $data);
$this->load->view('layout/footer_dark');
}