aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2012-03-14 07:20:13 +0100
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2012-03-14 07:20:13 +0100
commit4fcdada4320d5d5619eb3a1f517d0fea6b26857b (patch)
treebc2ba3aac0a08c1464718f688be8080d0dff6d2c /mod/network.php
parent5bae7159cc7b182e40229bb6d547ccf303eb4282 (diff)
parentfb77bfa648c3dd06d1b3f343f5ad98f32a7ce313 (diff)
downloadvolse-hubzilla-4fcdada4320d5d5619eb3a1f517d0fea6b26857b.tar.gz
volse-hubzilla-4fcdada4320d5d5619eb3a1f517d0fea6b26857b.tar.bz2
volse-hubzilla-4fcdada4320d5d5619eb3a1f517d0fea6b26857b.zip
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'mod/network.php')
-rwxr-xr-xmod/network.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/mod/network.php b/mod/network.php
index 861b5ab73..4f58fc4fb 100755
--- a/mod/network.php
+++ b/mod/network.php
@@ -44,8 +44,9 @@ function network_init(&$a) {
}
$a->page['aside'] .= group_side('network','network',true,$group_id);
- $a->page['aside'] .= networks_widget($a->get_baseurl() . '/network',(($_GET['nets']) ? $_GET['nets'] : ''));
+ $a->page['aside'] .= networks_widget($a->get_baseurl() . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
$a->page['aside'] .= saved_searches($search);
+ $a->page['aside'] .= fileas_widget($a->get_baseurl() . '/network',(x($_GET, 'file') ? $_GET['file'] : ''));
}
@@ -132,15 +133,15 @@ function network_content(&$a, $update = 0) {
$starred_active = 'active';
}
- if($_GET['bmark']) {
+ if(x($_GET,'bmark')) {
$bookmarked_active = 'active';
}
- if($_GET['conv']) {
+ if(x($_GET,'conv')) {
$conv_active = 'active';
}
- if($_GET['spam']) {
+ if(x($_GET,'spam')) {
$spam_active = 'active';
}
@@ -248,7 +249,7 @@ function network_content(&$a, $update = 0) {
$def_acl = array('allow_cid' => '<' . intval($cid) . '>');
if(! $update) {
- if(group) {
+ if($group) {
if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
'Warning: This group contains %s members from an insecure network.',
@@ -498,7 +499,9 @@ function network_content(&$a, $update = 0) {
$items = conv_sort($items,$ordering);
- }
+ } else {
+ $items = array();
+ }
}