Solution :
Ouvrir : styles/prosilver/template/overall_header.html
Rechercher
- Code: Tout sélectionner
<!-- IF S_USER_PM_POPUP -->
if ({S_NEW_PM})
{
popup('{UA_POPUP_PM}', 400, 225, '_phpbbprivmsg');
}
<!-- ENDIF -->
Ajouter aprés
- Code: Tout sélectionner
/**
* Window popup
*/
function popup(url, width, height, name)
{
if (!name)
{
name = '_popup';
}
window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes, width=' + width);
return false;
}




phpBB (
)
[/center]

