diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 3 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2004-12-12 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/ContentHandler.cpp: + + Back out the fix for bug #158466, it's wrong. + 2004-12-06 Christian Persch <chpe@cvs.gnome.org> * configure.ac: diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index c9d50cf12..acba45c3a 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -343,8 +343,7 @@ NS_METHOD GContentHandler::MIMEDoAction (void) mLauncher->GetMIMEInfo(getter_AddRefs(mimeInfo)); NS_ENSURE_TRUE (mimeInfo, NS_ERROR_FAILURE); - if (mAction == CONTENT_ACTION_OPEN || - mAction == CONTENT_ACTION_OPEN_TMP ) + if (mAction == CONTENT_ACTION_OPEN) { nsEmbedString desc; |