diff options
author | Friendika <info@friendika.com> | 2011-07-30 20:48:55 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-30 20:48:55 -0700 |
commit | 149d52da8b49893426a584b14b2a48f81d32113b (patch) | |
tree | dd9926bcbcb46a733bcad27f8e1d8041c9fa78f0 | |
parent | 60caffcd7776043ee89e5939b81d7bd9d948cd4e (diff) | |
download | volse-hubzilla-149d52da8b49893426a584b14b2a48f81d32113b.tar.gz volse-hubzilla-149d52da8b49893426a584b14b2a48f81d32113b.tar.bz2 volse-hubzilla-149d52da8b49893426a584b14b2a48f81d32113b.zip |
show correct self profile in api
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | include/api.php | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ <?php -define ( 'FRIENDIKA_VERSION', '2.2.1056' ); +define ( 'FRIENDIKA_VERSION', '2.2.1057' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1076 ); diff --git a/include/api.php b/include/api.php index 2b1a8b0f5..31bf0624b 100644 --- a/include/api.php +++ b/include/api.php @@ -201,7 +201,7 @@ api_login($a); return False; } else { $user = $_SESSION['uid']; - $extra_query = "AND `contact`.`uid` = %d "; + $extra_query = "AND `contact`.`uid` = %d AND `contact`.`self` = 1 "; } } |