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())
|
if (url.empty())
|
||||||
{
|
{
|
||||||
// not found
|
// not found ? rely on hardcoded stuff
|
||||||
nlwarning("No FAQ url");
|
if (nlstricmp(languageCode, "fr") == 0)
|
||||||
}
|
{
|
||||||
else
|
url = "http://forums.ryzom.com/forum/showthread.php?t=29130";
|
||||||
{
|
}
|
||||||
openURL(url.c_str());
|
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