]> spindle.queued.net Git - midori/commitdiff
Properly omit user script / styles on special pages
authorPaweł Forysiuk <tuxator@o2.pl>
Tue, 6 Sep 2011 20:44:13 +0000 (22:44 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 14 Sep 2011 00:19:30 +0000 (02:19 +0200)
extensions/addons.c

index b7733c6535f5d600e932ce5cc0c5405175eb78d6..2916ea82a679d4e2ecdfe9f0830809a8381295e4 100644 (file)
@@ -1460,7 +1460,7 @@ addons_context_ready_cb (WebKitWebView*   web_view,
 
     uri = katze_object_get_string (web_view, "uri");
     /* Don't run scripts or styles on blank or special pages */
-    if (!(uri && *uri && strncmp (uri, "about:", 6)))
+    if (!(uri && *uri) || !strncmp (uri, "about:", 6))
     {
         g_free (uri);
         return;