diff options
author | friendica <info@friendica.com> | 2015-03-12 16:20:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-12 16:20:29 -0700 |
commit | 02a58dc5b05a39eee9784261c5010c0f1765588f (patch) | |
tree | cd1e4dc8ab81cd773fd7a6e791552385ce7fd6a0 | |
parent | 1d05f922f828e1e52cdf35f9c1e5ad26a85e398e (diff) | |
download | volse-hubzilla-02a58dc5b05a39eee9784261c5010c0f1765588f.tar.gz volse-hubzilla-02a58dc5b05a39eee9784261c5010c0f1765588f.tar.bz2 volse-hubzilla-02a58dc5b05a39eee9784261c5010c0f1765588f.zip |
more JS=1 weirdness
-rw-r--r-- | mod/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php index d24d665d8..b2888b223 100644 --- a/mod/network.php +++ b/mod/network.php @@ -13,7 +13,7 @@ function network_init(&$a) { return; } - if(count($_GET) < 2) { + if((count($_GET) < 2) || (count($_GET) < 3 && $_GET['JS'])) { $network_options = get_pconfig(local_channel(),'system','network_page_default'); if($network_options) goaway('network' . '?f=&' . $network_options); |