]> git.mxchange.org Git - friendica.git/commitdiff
Support for the Diaspora App in Firefox.
authorMichael Vogel <icarus@dabo.de>
Sun, 2 Feb 2014 08:56:37 +0000 (09:56 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 2 Feb 2014 08:56:37 +0000 (09:56 +0100)
index.php

index 26bc800f7865dc3b77d29ab979998f65f1a14e4c..335547d74b34e2de9deb2175afc3c25d03efde48 100644 (file)
--- a/index.php
+++ b/index.php
@@ -191,6 +191,10 @@ if(strlen($a->module)) {
        if ($a->module == "stream")
                $a->module = "network";
 
+       // Compatibility with the Firefox App
+       if (($a->module == "users") AND ($a->cmd == "users/sign_in"))
+               $a->module = "login";
+
        $privateapps = get_config('config','private_addons');
 
        if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
@@ -461,7 +465,7 @@ if ($_GET["mode"] == "raw") {
        exit;
 
 } elseif (get_pconfig(local_user(),'system','infinite_scroll')
-          AND ($_GET["q"] == "network") AND ($_GET["mode"] != "minimal")) {
+          AND ($a->module == "network") AND ($_GET["mode"] != "minimal")) {
        if (is_string($_GET["page"]))
                $pageno = $_GET["page"];
        else