diff --git a/indra/llcommon/llversionviewer.h b/indra/llcommon/llversionviewer.h
index c6405a1b01b15e70c627bfb4e3bc3b62ba73b7b0..282e8a18c5cc46f9b01961e59c49f3097f3f9453 100644
--- a/indra/llcommon/llversionviewer.h
+++ b/indra/llcommon/llversionviewer.h
@@ -12,7 +12,7 @@
 const S32 LL_VERSION_MAJOR = 1;
 const S32 LL_VERSION_MINOR = 18;
 const S32 LL_VERSION_PATCH = 3;
-const S32 LL_VERSION_BUILD = 3;
+const S32 LL_VERSION_BUILD = 4;
 
 const char * const LL_CHANNEL = "Second Life Release";
 
diff --git a/indra/newview/English.lproj/InfoPlist.strings b/indra/newview/English.lproj/InfoPlist.strings
index 0b95b39824263ff489f2a092ec7a4e266515ee3c..9b09bc3b89ec71868e6659ff48a81fca9173327a 100644
--- a/indra/newview/English.lproj/InfoPlist.strings
+++ b/indra/newview/English.lproj/InfoPlist.strings
@@ -1,5 +1,5 @@
 /* Localized versions of Info.plist keys */
 
 CFBundleName = "Second Life";
-CFBundleShortVersionString = "Second Life version 1.18.3.3";
-CFBundleGetInfoString = "Second Life version 1.18.3.3, Copyright 2004-2007 Linden Research, Inc.";
+CFBundleShortVersionString = "Second Life version 1.18.3.4";
+CFBundleGetInfoString = "Second Life version 1.18.3.4, Copyright 2004-2007 Linden Research, Inc.";
diff --git a/indra/newview/Info-SecondLife.plist b/indra/newview/Info-SecondLife.plist
index e1e04be47743f004af29bcb7a7c7988e9b6ed9b4..955532b23957a58dada69b25068bffe688ffecc9 100644
--- a/indra/newview/Info-SecondLife.plist
+++ b/indra/newview/Info-SecondLife.plist
@@ -32,7 +32,7 @@
 		</dict>
 	</array>
 	<key>CFBundleVersion</key>
-	<string>1.18.3.3</string>
+	<string>1.18.3.4</string>
 	<key>CSResourcesFileMapped</key>
 	<true/>
 </dict>
diff --git a/indra/newview/llpanelclassified.cpp b/indra/newview/llpanelclassified.cpp
index 477947003929bff656cebed87f4668a424aa8a73..f4a27cd058f885b20ed21c339d6926e16be57ef5 100644
--- a/indra/newview/llpanelclassified.cpp
+++ b/indra/newview/llpanelclassified.cpp
@@ -80,6 +80,7 @@ LLPanelClassified::LLPanelClassified(BOOL in_finder)
 	mInFinder(in_finder),
 	mDirty(false),
 	mForceClose(false),
+	mLocationChanged(false),
 	mClassifiedID(),
 	mCreatorID(),
 	mPriceForListing(0),
@@ -555,6 +556,7 @@ void LLPanelClassified::processClassifiedInfoReply(LLMessageSystem *msg, void **
         self->mDescEditor->setText(desc);
         self->mSnapshotCtrl->setImageAssetID(snapshot_id);
         self->mLocationEditor->setText(location_text);
+		self->mLocationChanged = false;
 
 		self->mCategoryCombo->setCurrentByIndex(category - 1);
 		self->mMatureCheck->set(mature);
@@ -745,6 +747,7 @@ void LLPanelClassified::confirmPublish(S32 option)
 	mNameEditor->resetDirty();
 	mDescEditor->resetDirty();
 	mLocationEditor->resetDirty();
+	mLocationChanged = false;
 	mCategoryCombo->resetDirty();
 	mMatureCheck->resetDirty();
 	mAutoRenewCheck->resetDirty();
@@ -819,6 +822,7 @@ void LLPanelClassified::onClickSet(void* data)
     location_text.append(llformat(" (%d, %d, %d)", region_x, region_y, region_z));
 
 	self->mLocationEditor->setText(location_text);
+	self->mLocationChanged = true;
 
 	// Set this to null so it updates on the next save.
 	self->mParcelID.setNull();
@@ -834,6 +838,7 @@ BOOL LLPanelClassified::checkDirty()
 	if	( mNameEditor )				mDirty |= mNameEditor->isDirty();
 	if	( mDescEditor )				mDirty |= mDescEditor->isDirty();
 	if	( mLocationEditor )			mDirty |= mLocationEditor->isDirty();
+	if  ( mLocationChanged )		mDirty |= TRUE;
 	if	( mCategoryCombo )			mDirty |= mCategoryCombo->isDirty();
 	if	( mMatureCheck )			mDirty |= mMatureCheck->isDirty();
 	if	( mAutoRenewCheck )			mDirty |= mAutoRenewCheck->isDirty();
diff --git a/indra/newview/llpanelclassified.h b/indra/newview/llpanelclassified.h
index 284016f14980a8c319ff8fc61cd862337cde4c30..7b5a669250d713618fd15e68573ce722e2d775e4 100644
--- a/indra/newview/llpanelclassified.h
+++ b/indra/newview/llpanelclassified.h
@@ -97,6 +97,7 @@ class LLPanelClassified : public LLPanel
 	BOOL mInFinder;
 	BOOL mDirty;
 	bool mForceClose;
+	bool mLocationChanged;
 	LLUUID mClassifiedID;
 	LLUUID mRequestedID;
 	LLUUID mCreatorID;
diff --git a/indra/newview/llpanelgroupgeneral.cpp b/indra/newview/llpanelgroupgeneral.cpp
index 9139b01e0fcd5441de6b2b38c598ded5aee64952..a2cc0f5a81846cc260481acb9a9e05ee40c8b1b6 100644
--- a/indra/newview/llpanelgroupgeneral.cpp
+++ b/indra/newview/llpanelgroupgeneral.cpp
@@ -497,8 +497,6 @@ bool LLPanelGroupGeneral::apply(LLString& mesg)
 	mChanged = FALSE;
 	notifyObservers();
 
-	notifyObservers();
-
 	return true;
 }
 
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 8767b157150493bdd9c88b012a19a28d1cdbe264..fe17664c7d9b3a6393d5a6fa74b0fb7fc7131bd8 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -2622,7 +2622,7 @@ void update_dialog_callback(S32 option, void *userdata)
 #if !LL_RELEASE_FOR_DOWNLOAD
 	if (option == 2)
 	{
-		LLStartUp::setStartupState( STATE_WORLD_INIT ); 
+		LLStartUp::setStartupState( STATE_LOGIN_AUTH_INIT ); 
 		return;
 	}
 #endif
@@ -2638,7 +2638,7 @@ void update_dialog_callback(S32 option, void *userdata)
 		}
 		else
 		{
-			LLStartUp::setStartupState( STATE_WORLD_INIT );
+			LLStartUp::setStartupState( STATE_LOGIN_AUTH_INIT );
 		}
 		return;
 	}