aboutsummaryrefslogtreecommitdiffstats
path: root/mod/update_profile.php
blob: 367a5568d85636403d0bfe40069b03825178cf71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php


require_once('mod/profile.php');


function update_profile_content(&$a) {

	header("Content-type: text/html");
	echo "<!DOCTYPE html><html><body>\r\n";
	echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
	echo str_replace("\t",'       ',profile_content($a,true));
	echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
	echo "</body></html>\r\n";
	killme();

}