diff options
author | friendica <info@friendica.com> | 2012-03-18 22:12:36 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-18 22:12:36 -0700 |
commit | cca524495cdc8c1167421393f4d8e8da4a94a855 (patch) | |
tree | 2e76b0ce5b6baf26ff6ba2e8ee89efde74080b5e /mod | |
parent | 02786d6ed0811b0d63c0e466309dfda7740e2609 (diff) | |
download | volse-hubzilla-cca524495cdc8c1167421393f4d8e8da4a94a855.tar.gz volse-hubzilla-cca524495cdc8c1167421393f4d8e8da4a94a855.tar.bz2 volse-hubzilla-cca524495cdc8c1167421393f4d8e8da4a94a855.zip |
community discovery cont., cleanup of DB debugging
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/dfrn_poll.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index b12e07132..fe5cd4906 100755 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -199,7 +199,7 @@ function dfrn_poll_post(&$a) { $ptype = ((x($_POST,'type')) ? $_POST['type'] : ''); $dfrn_version = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version'] : 2.0); $perm = ((x($_POST,'perm')) ? $_POST['perm'] : 'r'); - + if($ptype === 'profile-check') { if((strlen($challenge)) && (strlen($sec))) { @@ -358,8 +358,8 @@ function dfrn_poll_post(&$a) { intval($contact_id) ); } - } - + } + header("Content-type: application/atom+xml"); $o = get_feed_for($a,$dfrn_id, $a->argv[1], $last_update, $direction); echo $o; |