mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Backed out changeset: cd8e80e4b0d6
This commit is contained in:
parent
1cd4afa1b6
commit
7e7e15ebb6
1 changed files with 14 additions and 6 deletions
|
@ -49,11 +49,19 @@ void browseFAQ(NLMISC::CConfigFile &cf)
|
|||
}
|
||||
if (url.empty())
|
||||
{
|
||||
// not found
|
||||
nlwarning("No FAQ url");
|
||||
}
|
||||
else
|
||||
{
|
||||
openURL(url.c_str());
|
||||
// not found ? rely on hardcoded stuff
|
||||
if (nlstricmp(languageCode, "fr") == 0)
|
||||
{
|
||||
url = "http://forums.ryzom.com/forum/showthread.php?t=29130";
|
||||
}
|
||||
else if (nlstricmp(languageCode, "de") == 0)
|
||||
{
|
||||
url = "http://forums.ryzom.com/forum/showthread.php?t=29131";
|
||||
}
|
||||
else
|
||||
{
|
||||
url = "http://forums.ryzom.com/forum/showthread.php?t=29129";
|
||||
}
|
||||
}
|
||||
openURL(url.c_str());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue