diff options
author | Justin Clark-Casey (justincc) | 2012-10-16 01:33:35 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-16 01:33:35 +0100 |
commit | ab0294f0109416da0546e25797e7747b23071d33 (patch) | |
tree | 78c046f52e1c3ea9e22b9f2d1872fab26903c482 /OpenSim/Region | |
parent | minor: Add missing newlines and spacing to help for "debug eq" console command (diff) | |
download | opensim-SC_OLD-ab0294f0109416da0546e25797e7747b23071d33.zip opensim-SC_OLD-ab0294f0109416da0546e25797e7747b23071d33.tar.gz opensim-SC_OLD-ab0294f0109416da0546e25797e7747b23071d33.tar.bz2 opensim-SC_OLD-ab0294f0109416da0546e25797e7747b23071d33.tar.xz |
Add missing category paremeter to llGiveInventoryList grid IM construction.
This was a regression from 16c9c1df Sat Oct 6 02:34:49 2012 +0100.
Should resolve http://opensimulator.org/mantis/view.php?id=6360
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 1e8dec8..ac74bf8 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -6459,7 +6459,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
6459 | GridInstantMessage msg = new GridInstantMessage(World, | 6459 | GridInstantMessage msg = new GridInstantMessage(World, |
6460 | m_host.OwnerID, m_host.Name, destID, | 6460 | m_host.OwnerID, m_host.Name, destID, |
6461 | (byte)InstantMessageDialog.TaskInventoryOffered, | 6461 | (byte)InstantMessageDialog.TaskInventoryOffered, |
6462 | false, string.Format("'{0}'"), | 6462 | false, string.Format("'{0}'", category), |
6463 | // We won't go so far as to add a SLURL, but this is the format used by LL as of 2012-10-06 | 6463 | // We won't go so far as to add a SLURL, but this is the format used by LL as of 2012-10-06 |
6464 | // false, string.Format("'{0}' ( http://slurl.com/secondlife/{1}/{2}/{3}/{4} )", category, World.Name, (int)pos.X, (int)pos.Y, (int)pos.Z), | 6464 | // false, string.Format("'{0}' ( http://slurl.com/secondlife/{1}/{2}/{3}/{4} )", category, World.Name, (int)pos.X, (int)pos.Y, (int)pos.Z), |
6465 | folderID, false, pos, | 6465 | folderID, false, pos, |