mirror of
https://github.com/friendica/friendica
synced 2025-04-26 05:10:11 +00:00
Use class variables
This commit is contained in:
parent
02084331e3
commit
e81c911b49
3 changed files with 4 additions and 6 deletions
|
@ -35,11 +35,9 @@ class Network extends NetworkModule
|
|||
|
||||
$this->parseRequest($request);
|
||||
|
||||
$profile_uid = intval($request['p']);
|
||||
|
||||
$o = '';
|
||||
|
||||
if (empty($request['force'])) {
|
||||
if (!$this->force) {
|
||||
System::htmlUpdateExit($o);
|
||||
}
|
||||
|
||||
|
@ -51,7 +49,7 @@ class Network extends NetworkModule
|
|||
$items = $this->getItems();
|
||||
}
|
||||
|
||||
$o = $this->conversation->render($items, Conversation::MODE_NETWORK, $profile_uid, false, $this->getOrder(), $this->session->getLocalUserId());
|
||||
$o = $this->conversation->render($items, Conversation::MODE_NETWORK, true, false, $this->getOrder(), $this->session->getLocalUserId());
|
||||
|
||||
System::htmlUpdateExit($o);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue