Notice: Undefined index: charset

Please report bugs here!

Moderator: Thorsten

Post Reply
new
Posts: 2
Joined: Tue Apr 03, 2007 5:31 am

Notice: Undefined index: charset

Post by new »

Notice: Undefined index: charset in d:\ror-ide\instantrails\www\phpmyfaq\index.php on line 210

Notice: Undefined index: charset in d:\ror-ide\instantrails\www\phpmyfaq\index.php on line 211

Notice: Undefined index: charset in d:\ror-ide\instantrails\www\phpmyfaq\index.php on line 212

Notice: Undefined index: charset in d:\ror-ide\instantrails\www\phpmyfaq\index.php on line 213

Notice: Undefined index: charset in d:\ror-ide\instantrails\www\phpmyfaq\index.php on line 214


This is the 1.6.11 version.
Thorsten
Posts: 15725
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Post by Thorsten »

Hi,

which language do you use?

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Dave
Posts: 1
Joined: Thu Apr 12, 2007 8:45 pm

Post by Dave »

just add

to index.php before line 210:

if(!isset($PMF_LANG['charset'])){
$PMF_LANG['charset'] = "";
}

and to admin/header.php below line 33:

if(!isset($PMF_LANG['charset'])){
$PMF_LANG['charset'] = "";
}

solved!

good luck.
Thorsten
Posts: 15725
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Post by Thorsten »

Hi,

$PMF_LANG['charset'] is always set in the language file. So your "fix" won't fix the main problem.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply