Hopefully fix the logs thing?
This commit is contained in:
@@ -902,12 +902,12 @@ std::string LLDir::getForbiddenFileChars()
|
|||||||
// static
|
// static
|
||||||
std::string LLDir::getGridSpecificDir( const std::string& in, const std::string& grid )
|
std::string LLDir::getGridSpecificDir( const std::string& in, const std::string& grid )
|
||||||
{
|
{
|
||||||
std::string ret;
|
std::string ret = in;
|
||||||
if (!grid.empty())
|
if (!grid.empty())
|
||||||
{
|
{
|
||||||
std::string gridlower(grid);
|
std::string gridlower(grid);
|
||||||
LLStringUtil::toLower(gridlower);
|
LLStringUtil::toLower(gridlower);
|
||||||
ret = in + "@" + gridlower;
|
ret += '@' + gridlower;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user