diff options
author | friendica <info@friendica.com> | 2012-02-16 00:08:38 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-16 00:08:38 -0800 |
commit | 1b445d511b729d114439935c1315f1f1ead7e1b2 (patch) | |
tree | e6035a5cb748f0bf6443adc03386735799c4c72f /include/diaspora.php | |
parent | ada2a555dce33692ee40b3fb81c93dbe276e73cd (diff) | |
download | volse-hubzilla-1b445d511b729d114439935c1315f1f1ead7e1b2.tar.gz volse-hubzilla-1b445d511b729d114439935c1315f1f1ead7e1b2.tar.bz2 volse-hubzilla-1b445d511b729d114439935c1315f1f1ead7e1b2.zip |
another sql typo
Diffstat (limited to 'include/diaspora.php')
-rwxr-xr-x | include/diaspora.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index ba0112362..a116e6a44 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -611,7 +611,7 @@ function diaspora_request($importer,$xml) { intval($contact_record['id']) ); - $u = q("select * from user where id = %d limit 1",intval($importer['uid'])); + $u = q("select * from user where uid = %d limit 1",intval($importer['uid'])); if($u) $ret = diaspora_share($u[0],$contact_record); } |