aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/network.php')
-rw-r--r--mod/network.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php
index aa42e2f52..10683aeda 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -2,6 +2,10 @@
function network_init(&$a) {
+ if(! local_user())
+ goaway( $a->get_baseurl() . "/login" );
+
+
require_once('include/group.php');
if(! x($a->page,'aside'))
$a->page['aside'] = '';
@@ -22,8 +26,7 @@ function network_init(&$a) {
function network_content(&$a, $update = 0) {
if(! local_user())
- return '';
-
+ return "";
$o = '';
require_once("include/bbcode.php");