1
0
Fork 0

bug fixes

This commit is contained in:
Mike Macgirvin 2010-07-19 05:24:22 -07:00
commit bbe53699f2
10 changed files with 29 additions and 26 deletions

View file

@ -23,12 +23,20 @@ if((x($_SESSION,'authenticated')) && (! ($_POST['auth-params'] == 'login'))) {
if(strlen($a->user['timezone']))
date_default_timezone_set($a->user['timezone']);
if(x($a->user,'nickname'))
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
else
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['uid'];
$r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
intval($_SESSION['uid']));
if(count($r)) {
$a->contact = $r[0];
$a->cid = $r[0]['id'];
$_SESSION['cid'] = $a->cid;
}
}
}

View file

@ -15,8 +15,8 @@ require_once("datetime.php");
if($argc < 3)
exit;
$baseurl = $argv[1]);
dbg(3);
$baseurl = $argv[1];
$a->set_baseurl($argv[1]);
$cmd = $argv[2];
@ -224,7 +224,7 @@ if($argc < 3)
$url = $rr['notify'] . '?dfrn_id=' . $rr['dfrn-id'];
$xml = fetch_url($url);
echo $xml;
if(! $xml)
continue;
@ -246,7 +246,7 @@ if($argc < 3)
$postvars['data'] = $atom_nowrite;
$xml = post_url($rr['notify'],$postvars);
echo $xml;
}
killme();

View file

@ -118,7 +118,7 @@ echo "Length:" . strlen($xml) . "\r\n";
$datarray = get_atom_elements($item);
$datarray['parent-uri'] = $parent_uri;
$datarray['uid'] = $importer['uid'];
$datarray['contact-id'] = $importer['id'];
$datarray['contact-id'] = $contact['id'];
$r = post_remote($a,$datarray);
continue;
}
@ -146,7 +146,7 @@ echo "Length:" . strlen($xml) . "\r\n";
$datarray = get_atom_elements($item);
$datarray['parent-uri'] = $item_id;
$datarray['uid'] = $importer['uid'];
$datarray['contact-id'] = $importer['id'];
$datarray['contact-id'] = $contact['id'];
$r = post_remote($a,$datarray);
continue;