diff options
| author | Kelly Washington <kelly@lindenlab.com> | 2013-05-03 21:58:19 +0000 | 
|---|---|---|
| committer | Kelly Washington <kelly@lindenlab.com> | 2013-05-03 21:58:19 +0000 | 
| commit | 50cee8d660d069611220ce57f2190702c022458c (patch) | |
| tree | 902abe0537757c96f4bad63375a523fb4444e2f3 | |
| parent | 06f9f7b2d9d867934d952ac7500711c25f346c1e (diff) | |
MAINT-2655: "Block button in permissions dialog prompt does not block object"
* Fix mute button.
| -rwxr-xr-x | indra/newview/llviewermessage.cpp | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index fe68592c57..ace16396db 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -6476,8 +6476,13 @@ void process_script_question(LLMessageSystem *msg, void **user_data)  		if (known_questions != questions)  		{	// This is in addition to the normal dialog. +			LLSD payload; +			payload["task_id"] = taskid; +			payload["item_id"] = itemid; +			payload["object_name"] = object_name; +			  			args["DOWNLOADURL"] = LLTrans::getString("ViewerDownloadURL"); -			LLNotificationsUtil::add("UnknownScriptQuestion",args); +			LLNotificationsUtil::add("UnknownScriptQuestion",args,payload);  		}  		if (known_questions)  | 
