diff options
author | Friendika <info@friendika.com> | 2011-04-11 03:22:09 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-11 03:22:09 -0700 |
commit | c8f32536ff77193689efe69702f91122f97c1f36 (patch) | |
tree | 9572912bab0a8f7fb8783873f999ea7e880774e9 /mod/profile.php | |
parent | 9133a2384aecd61f8ee59b380d82dc2d58660703 (diff) | |
download | volse-hubzilla-c8f32536ff77193689efe69702f91122f97c1f36.tar.gz volse-hubzilla-c8f32536ff77193689efe69702f91122f97c1f36.tar.bz2 volse-hubzilla-c8f32536ff77193689efe69702f91122f97c1f36.zip |
pull in new 'writable' dfrn flag
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index f98c28f8f..a12fd9af2 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -272,7 +272,7 @@ function profile_content(&$a, $update = 0) { $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`, - `contact`.`thumb`, `contact`.`self`, + `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0 |