diff options
author | Josh Bell <josh@lindenlab.com> | 2008-03-07 17:26:51 +0000 |
---|---|---|
committer | Josh Bell <josh@lindenlab.com> | 2008-03-07 17:26:51 +0000 |
commit | 31f7f6c0018ecbbc55986035e935f5e42a33ff16 (patch) | |
tree | a1df38c525b5f47eb7b592518342478fe0239b37 /indra/llinventory/llparcel.cpp | |
parent | dc27e10bdd158e0f57b3e07a5946cb8978b916e8 (diff) |
svn merge -r 80990:81720 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-19-1-Server --> release
Reg-api merge is the bulk of the diff, it's actually not so bad. Change summary:
* Fixed a bogus HTTP/curl warning and cleaned up one line of code for clarity
* extra '.' in FQDN names/extra . in the non-FQDN case, which is a syntax error
* DEV-11542 Joining two parcels destroys search relevance of a store.
* Fixed bug preventing users who turn off email notification from getting offline messages at login
* Updated version numbers
* New reg-api (w00t!)
* DEV-11427 / DEV-11399 - LSL slowdown from strncpy buffer-clearing overhead
* DEV-11359 Hide music URL should be on by default
* Update to r89 of eventlet
* QAR-347 "SEC-28 - It is possible to rez any object, whether you own it or not."
* QAR-336 Additional logging to track teleport failures
* DEV-11397 - use the slave db for read queries for crons
* Fix to turn off PEAR debug logging
* Copied code from eventlet.coros to make an Updater that won't die so easily. (multiagent-chat)
* Various chicanery with dir-find query
* Emergency fix for bad FORCE INDEX on user table when actually searching on the user_last_name table
* DEV-11124 : Modify backbone service proxy so that we know which web-ds host a dataservice is actually called
* Fixes for DEV-5883 : Test improved-instant-message
Diffstat (limited to 'indra/llinventory/llparcel.cpp')
-rw-r--r-- | indra/llinventory/llparcel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp index 7a84e1916f..81001a2c9d 100644 --- a/indra/llinventory/llparcel.cpp +++ b/indra/llinventory/llparcel.cpp @@ -216,8 +216,8 @@ void LLParcel::init(const LLUUID &owner_id, mMediaID.setNull(); mMediaAutoScale = 0; mMediaLoop = TRUE; - mObscureMedia = 0; - mObscureMusic = 0; + mObscureMedia = 1; + mObscureMusic = 1; mMediaWidth = 0; mMediaHeight = 0; @@ -1850,8 +1850,8 @@ void LLParcel::clearParcel() setMediaDesc(NULL); setMediaAutoScale(0); setMediaLoop(TRUE); - mObscureMedia = 0; - mObscureMusic = 0; + mObscureMedia = 1; + mObscureMusic = 1; mMediaWidth = 0; mMediaHeight = 0; setMusicURL(NULL); |