🌍
Français
Bonjour,
Pour le petit bug ligne 49 du fichier main.inc.phpqui génère une ligne "PHP Notice" , le lien vers la page trac du code est brisé.
donc je suggère ici de passer de
if ((script_basename() != 'admin') and ($page['body_id'] != 'thePopuphelpPage')){
à
if ((script_basename() != 'admin') and (isset($page['body_id']) and ($page['body_id'] != 'thePopuphelpPage'))){
ou
if ((script_basename() != 'admin') and (@$page['body_id'] != 'thePopuphelpPage')){
Hors ligne