having the file open then let PermissionsToString know about Export

This commit is contained in:
UbitUmarov
2017-04-30 14:42:20 +01:00
parent 0d59a29dc7
commit a96c0f760a

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;