Resolved
I had this errormessage because I delete the English directory
For the other Admin : Never delete the English : copy your lang in it or change code
like this
in profile.php
find
// Make sure we got a valid language string
if (isset($form['language']))
{
$form['language'] = preg_replace('#[\.\\\/]#', '', $form['language']);
if (!file_exists(PUN_ROOT.'lang/'.$form['language'].'/common.php'))
message($lang_common['Bad request']);
}
replace by :
// Make sure we got a valid language string
//Modif Nico because bug when you don't have lang list... :/
if(empty($form['language']))
$form['language'] = 'YOURLANGUAGE';
$form['language'] = preg_replace('#[\.\\\/]#', '', $form['language']);
if (!file_exists(PUN_ROOT.'lang/'.$form['language'].'/common.php'))
message($lang_common['Bad request']);
// choose your language //
thanks Nico and his post http://www.punbb.fr/forums/viewtopic.ph … 511#p10511