Revert "Apply URI magic to externally opened addresses"

The commit had the wrong author name.
This commit is contained in:
Christian Dywan 2009-04-12 23:31:42 +02:00
parent 1b8de1588f
commit 85f2386279

View file

@ -14,7 +14,6 @@
#endif #endif
#include "midori-app.h" #include "midori-app.h"
#include "sokoke.h"
#include <string.h> #include <string.h>
#include <gtk/gtk.h> #include <gtk/gtk.h>
@ -386,16 +385,14 @@ midori_browser_message_received_cb (UniqueApp* instance,
first = (open_external_pages_in == MIDORI_NEW_PAGE_CURRENT); first = (open_external_pages_in == MIDORI_NEW_PAGE_CURRENT);
while (*uris) while (*uris)
{ {
gchar* fixed_uri = sokoke_magic_uri (*uris, NULL);
if (first) if (first)
{ {
midori_browser_set_current_uri (browser, fixed_uri); midori_browser_set_current_uri (browser, *uris);
first = FALSE; first = FALSE;
} }
else else
midori_browser_set_current_page (browser, midori_browser_set_current_page (browser,
midori_browser_add_uri (browser, fixed_uri)); midori_browser_add_uri (browser, *uris));
g_free (fixed_uri);
uris++; uris++;
} }
/* g_strfreev (uris); */ /* g_strfreev (uris); */