having the file open then let PermissionsToString know about Export

httptests
UbitUmarov 2017-04-30 14:42:20 +01:00
parent 0d59a29dc7
commit a96c0f760a
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ namespace OpenSim.Framework
str += "C";
if ((perms & (int)PermissionMask.Transfer) != 0)
str += "T";
if ((perms & (int)PermissionMask.Export) != 0)
str += "X";
if (str == "")
str = ".";
return str;