]> git.mxchange.org Git - friendica.git/blob - mod/update_profile.php
367a5568d85636403d0bfe40069b03825178cf71
[friendica.git] / mod / update_profile.php
1 <?php
2
3
4 require_once('mod/profile.php');
5
6
7 function update_profile_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",'       ',profile_content($a,true));
13         echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
14         echo "</body></html>\r\n";
15         killme();
16
17 }