Skip to content
Snippets Groups Projects
Commit ef0eb8db authored by Josh Bell's avatar Josh Bell
Browse files

svn merge -r 72356:72879...

svn merge -r 72356:72879 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-18-3-Server --> release

Backport fixes from 1.18.3 Server
parent 7afa8058
Branches
Tags
No related merge requests found
...@@ -1616,7 +1616,7 @@ void LLParcel::startSale(const LLUUID& buyer_id, BOOL is_buyer_group) ...@@ -1616,7 +1616,7 @@ void LLParcel::startSale(const LLUUID& buyer_id, BOOL is_buyer_group)
mSaleTimerExpires.setTimerExpirySec(DEFAULT_USEC_SALE_TIMEOUT / SEC_TO_MICROSEC); mSaleTimerExpires.setTimerExpirySec(DEFAULT_USEC_SALE_TIMEOUT / SEC_TO_MICROSEC);
mStatus = OS_LEASE_PENDING; mStatus = OS_LEASE_PENDING;
mClaimDate = time(NULL); mClaimDate = time(NULL);
mAuctionID = 0; setAuctionID(0);
// clear the autoreturn whenever land changes hands // clear the autoreturn whenever land changes hands
setCleanOtherTime(0); setCleanOtherTime(0);
} }
...@@ -1651,6 +1651,7 @@ void LLParcel::completeSale(U32& type, U8& flags, ...@@ -1651,6 +1651,7 @@ void LLParcel::completeSale(U32& type, U8& flags,
// Purchased parcels are assumed to no longer be for sale. // Purchased parcels are assumed to no longer be for sale.
// Otherwise someone can snipe the sale. // Otherwise someone can snipe the sale.
setForSale(FALSE); setForSale(FALSE);
setAuctionID(0);
// Turn off show directory, since it's a recurring fee that // Turn off show directory, since it's a recurring fee that
// the buyer may not want. // the buyer may not want.
...@@ -1676,6 +1677,7 @@ void LLParcel::clearSale() ...@@ -1676,6 +1677,7 @@ void LLParcel::clearSale()
} }
mAuthBuyerID.setNull(); mAuthBuyerID.setNull();
setForSale(FALSE); setForSale(FALSE);
setAuctionID(0);
setPreviousOwnerID(LLUUID::null); setPreviousOwnerID(LLUUID::null);
setPreviouslyGroupOwned(FALSE); setPreviouslyGroupOwned(FALSE);
setSellWithObjects(FALSE); setSellWithObjects(FALSE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment