Update panelAdmin.php

This commit is contained in:
marian1010 2021-05-13 12:44:12 +02:00
parent 31ba3ec858
commit ce47b5b766
1 changed files with 4 additions and 4 deletions

View File

@ -19,11 +19,11 @@
}
else if(isset($_POST['add_cinema'])) {
$this->addCinema();
$template->print_cinemas();
echo ($template->print_cinemas());
}
else {
$this-> addCinema();
$template->print_cinemas();
echo ($template->print_cinemas());
};
break;
@ -35,11 +35,11 @@
}
else if(isset($_POST['add_film'])) {
$this->addFilm();
$template->print_fimls();
echo ( $template->print_fimls());
}
else {
$this->addFilm();
$template->print_fimls();
echo( $template->print_fimls());
};
break;
case 'mp': require_once('manage_promotions.php');