aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-09-26 15:29:30 +0000
committerJustin Clarke Casey2008-09-26 15:29:30 +0000
commit055ea73b578eb41cd91b15aed50d0caff9606320 (patch)
tree28ea9a308e9aa63bc1dc3fa95cb654dfa3bc935f /OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
parent* minor: remove warnings (diff)
downloadopensim-SC_OLD-055ea73b578eb41cd91b15aed50d0caff9606320.zip
opensim-SC_OLD-055ea73b578eb41cd91b15aed50d0caff9606320.tar.gz
opensim-SC_OLD-055ea73b578eb41cd91b15aed50d0caff9606320.tar.bz2
opensim-SC_OLD-055ea73b578eb41cd91b15aed50d0caff9606320.tar.xz
* minor: fix lolbug in RestInventoryService spotted by jhurliman
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs')
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
index ab40b5d..a402989 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
@@ -1391,8 +1391,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
1391 1391
1392 private bool ItemHasChanged(InventoryItemBase newf, InventoryItemBase oldf) 1392 private bool ItemHasChanged(InventoryItemBase newf, InventoryItemBase oldf)
1393 { 1393 {
1394 return (newf.Name != oldf.Name 1394 return (newf.Name != oldf.Name
1395 || newf.Folder != oldf.Description 1395 || newf.Folder != oldf.Folder
1396 || newf.Description != oldf.Description 1396 || newf.Description != oldf.Description
1397 || newf.Owner != oldf.Owner 1397 || newf.Owner != oldf.Owner
1398 || newf.Creator != oldf.Creator 1398 || newf.Creator != oldf.Creator