diff options
author | friendica <info@friendica.com> | 2012-04-08 16:19:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-08 16:19:45 -0700 |
commit | 977625a53b77c4944fc294fa670aae15c068b94b (patch) | |
tree | b6898058a77925062bbcc82afcebb8e870c5d906 /mod/wall_attach.php | |
parent | 5c0446975516f2b52b6cf51618e0b75af56de71b (diff) | |
download | volse-hubzilla-977625a53b77c4944fc294fa670aae15c068b94b.tar.gz volse-hubzilla-977625a53b77c4944fc294fa670aae15c068b94b.tar.bz2 volse-hubzilla-977625a53b77c4944fc294fa670aae15c068b94b.zip |
fix to wall_upload photos default permissions to use cid rather than uid.
Diffstat (limited to 'mod/wall_attach.php')
-rw-r--r-- | mod/wall_attach.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/wall_attach.php b/mod/wall_attach.php index ecf475291..bee7c29dc 100644 --- a/mod/wall_attach.php +++ b/mod/wall_attach.php @@ -7,7 +7,7 @@ function wall_attach_post(&$a) { if($a->argc > 1) { $nick = $a->argv[1]; - $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1", + $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", dbesc($nick) ); if(! count($r)) @@ -21,6 +21,7 @@ function wall_attach_post(&$a) { $visitor = 0; $page_owner_uid = $r[0]['uid']; + $page_owner_cid = $r[0]['id']; $page_owner_nick = $r[0]['nickname']; $community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false); @@ -73,7 +74,7 @@ function wall_attach_post(&$a) { dbesc($filedata), dbesc($created), dbesc($created), - dbesc('<' . $page_owner_uid . '>'), + dbesc('<' . $page_owner_cid . '>'), dbesc(''), dbesc(''), dbesc('') |