mirror of
https://github.com/friendica/friendica
synced 2026-03-13 01:59:02 +01:00
14 lines
169 B
PHP
14 lines
169 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
require_once('mod/network.php');
|
||
|
|
|
||
|
|
|
||
|
|
function update_network_content(&$a) {
|
||
|
|
|
||
|
|
echo "<html>\r\n";
|
||
|
|
echo network_content($a,true);
|
||
|
|
echo "</html>\r\n";
|
||
|
|
killme();
|
||
|
|
|
||
|
|
}
|