diff --git a/indra/llcommon/llversionserver.h b/indra/llcommon/llversionserver.h
index aeab793c9a8988559e5ecf0a0f98182847224b70..291f6d63472b58b0e0daf494031de70f2d2bed10 100644
--- a/indra/llcommon/llversionserver.h
+++ b/indra/llcommon/llversionserver.h
@@ -35,7 +35,7 @@
 const S32 LL_VERSION_MAJOR = 1;
 const S32 LL_VERSION_MINOR = 21;
 const S32 LL_VERSION_PATCH = 1;
-const S32 LL_VERSION_BUILD = 85989;
+const S32 LL_VERSION_BUILD = 86526;
 
 const char * const LL_CHANNEL = "Second Life Server";
 
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp
index f084234c9f2998e07e9392af5111fb800d1cbc47..7ce985542f682c0accbcad6700a469d16f415b73 100644
--- a/indra/newview/llagent.cpp
+++ b/indra/newview/llagent.cpp
@@ -5823,6 +5823,7 @@ void LLAgent::teleportViaLure(const LLUUID& lure_id, BOOL godlike)
 		msg->addUUIDFast(_PREHASH_AgentID, getID());
 		msg->addUUIDFast(_PREHASH_SessionID, getSessionID());
 		msg->addUUIDFast(_PREHASH_LureID, lure_id);
+		// teleport_flags is a legacy field, now derived sim-side:
 		msg->addU32("TeleportFlags", teleport_flags);
 		sendReliableMessage();
 	}	
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index c157b5790c49361cddb24d643262a63ba4a5b327..5b16b8163906c4c33eb27ed6f3819ede09aa4107 100644
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -1278,10 +1278,6 @@ void lure_callback(S32 option, void* user_data)
 	case 0:
 		{
 			// accept
-			send_simple_im(info->mFromID,
-						   "",
-						   IM_LURE_ACCEPTED,
-						   info->mLureID);
 			gAgent.teleportViaLure(info->mLureID, info->mGodlike);
 		}
 		break;