diff options
author | Callum Prentice <callum@lindenlab.com> | 2010-01-19 11:52:41 -0800 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2010-01-19 11:52:41 -0800 |
commit | 228d37a8d72146d9baed57c7406a9324ce8c0175 (patch) | |
tree | 07c5588c1a44dc9b6429b2e014334bfe73fc792f | |
parent | 313ef1a0f63683336ec0d740912411bfeb2d9fbd (diff) |
Fix for EXT-4191 - Drag and Drop viewer resolves some slurls to "//"
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 45e153049b..d4ffe70f24 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -824,8 +824,7 @@ LLWindowCallbacks::DragNDropResult LLViewerWindow::handleDragNDrop( LLWindow *wi { if (drop) { - LLURLDispatcher::dispatch( data, NULL, true ); - LLURLSimString::setString( LLSLURL::stripProtocol( data ) ); + LLURLSimString::setStringRaw( LLSLURL::stripProtocol( data ) ); LLPanelLogin::refreshLocation( true ); LLPanelLogin::updateLocationUI(); } |