aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-02-16 00:08:38 -0800
committerfriendica <info@friendica.com>2012-02-16 00:08:38 -0800
commit1b445d511b729d114439935c1315f1f1ead7e1b2 (patch)
treee6035a5cb748f0bf6443adc03386735799c4c72f
parentada2a555dce33692ee40b3fb81c93dbe276e73cd (diff)
downloadvolse-hubzilla-1b445d511b729d114439935c1315f1f1ead7e1b2.tar.gz
volse-hubzilla-1b445d511b729d114439935c1315f1f1ead7e1b2.tar.bz2
volse-hubzilla-1b445d511b729d114439935c1315f1f1ead7e1b2.zip
another sql typo
-rwxr-xr-xinclude/diaspora.php2
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);
}