Skip to content

Commit

Permalink
Merge branch 'release/opensim-rel-0.9.2.2.8617'
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickson committed Aug 7, 2023
2 parents 1e756c0 + e3f6b40 commit f2c214a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OpenSim/Data/MySQL/MySQLInventoryData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ public void addInventoryItem(InventoryItemBase item)
result.Parameters.AddWithValue("?salePrice", item.SalePrice);
result.Parameters.AddWithValue("?saleType", unchecked((sbyte)item.SaleType));
result.Parameters.AddWithValue("?creationDate", item.CreationDate);
result.Parameters.AddWithValue("?groupID", item.GroupID);
result.Parameters.AddWithValue("?groupID", item.GroupID.ToString());
result.Parameters.AddWithValue("?groupOwned", item.GroupOwned);
result.Parameters.AddWithValue("?flags", item.Flags);

Expand Down
8 changes: 4 additions & 4 deletions OpenSim/Data/MySQL/MySQLUserProfilesData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public OSDArray GetClassifiedRecords(UUID creatorId)
dbcon.Open();
using (MySqlCommand cmd = new MySqlCommand(query, dbcon))
{
cmd.Parameters.AddWithValue("?Id", creatorId);
cmd.Parameters.AddWithValue("?Id", creatorId.ToString());
using( MySqlDataReader reader = cmd.ExecuteReader(CommandBehavior.Default))
{
if(reader.HasRows)
Expand Down Expand Up @@ -142,8 +142,8 @@ public bool UpdateClassifiedRecord(UserClassifiedAdd ad, ref string result)
+ "`simname`,"
+ "`posglobal`,"
+ "`parcelname`,"
+ "`classifiedflags`,"
+ "`priceforlisting`) "
+ "`classifiedflags`,"
+ "`priceforlisting`) "
+ "VALUES ("
+ "?ClassifiedId,"
+ "?CreatorId,"
Expand Down Expand Up @@ -288,7 +288,7 @@ public bool GetClassifiedInfo(ref UserClassifiedAdd ad, ref string result)
ad.ExpirationDate = Convert.ToInt32(reader["expirationdate"]);
ad.ParentEstate = Convert.ToInt32(reader["parentestate"]);
ad.Flags = (byte)reader.GetUInt32("classifiedflags");
ad.Category = reader.GetInt32("category");
ad.Category = Convert.ToInt32(reader["category"]);
ad.Price = reader.GetInt16("priceforlisting");
ad.Name = reader.GetString("name");
ad.Description = reader.GetString("description");
Expand Down
2 changes: 1 addition & 1 deletion OpenSim/Framework/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class VersionInfo
{
public const string VersionNumber = "0.9.2.2";
public const string AssemblyVersionNumber = "0.9.2.2";
public const string Release = "8615";
public const string Release = "8619";

public const Flavour VERSION_FLAVOUR = Flavour.Dev;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ public bool updateTransactionStatus(UUID transactionID, int status, string descr
MySqlCommand cmd = new MySqlCommand(sql, dbcon);
cmd.Parameters.AddWithValue("?status", status);
cmd.Parameters.AddWithValue("?desc", description);
cmd.Parameters.AddWithValue("?tranid", transactionID);
cmd.Parameters.AddWithValue("?tranid", transactionID.ToString());

if (cmd.ExecuteNonQuery() > 0) bRet = true;

Expand Down

0 comments on commit f2c214a

Please sign in to comment.