]> git.mxchange.org Git - friendica.git/blob - mod/update_profile.php
progress on photos
[friendica.git] / mod / update_profile.php
1 <?php
2
3
4 require_once('mod/profile.php');
5
6 function update_profile_content(&$a) {
7
8         header("Content-type: text/html");
9         echo "<!DOCTYPE html><html><body>\r\n";
10         echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
11         echo str_replace("\t",'       ',profile_content($a,true));
12         echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
13         echo "</body></html>\r\n";
14         killme();
15
16 }