]> git.mxchange.org Git - friendica.git/blob - mod/update_network.php
live updates sort of working
[friendica.git] / mod / update_network.php
1 <?php
2
3
4 require_once('mod/network.php');
5
6
7 function update_network_content(&$a) {
8
9         header("Content-type: text/html");
10         echo "<!DOCTYPE html><html><body>\r\n";
11         echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
12         echo str_replace("\t",'       ',network_content($a,true));
13         echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
14         echo "</body></html>\r\n";
15         killme();
16
17 }