diff options
author | friendica <info@friendica.com> | 2014-02-20 17:07:43 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-20 17:07:43 -0800 |
commit | e55170c00a74675cc9654e3485e29372867e402f (patch) | |
tree | 5af5b816f6f10da693d4b262cc94f4b420960e1f /mod/wall_upload.php | |
parent | 5c984aab66bd4a2202ac28244ab7e276ddf923e8 (diff) | |
download | volse-hubzilla-e55170c00a74675cc9654e3485e29372867e402f.tar.gz volse-hubzilla-e55170c00a74675cc9654e3485e29372867e402f.tar.bz2 volse-hubzilla-e55170c00a74675cc9654e3485e29372867e402f.zip |
code cleanup
Diffstat (limited to 'mod/wall_upload.php')
-rw-r--r-- | mod/wall_upload.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php index dd5d760b3..2939cf0d1 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -1,6 +1,7 @@ <?php require_once('include/photo/photo_driver.php'); +require_once('include/identity.php'); require_once('include/photos.php'); @@ -19,15 +20,7 @@ function wall_upload_post(&$a) { $nick = argv(1); } - $channel = null; - - if($nick) { - $r = q("SELECT channel.* from channel where channel_address = '%s' limit 1", - dbesc($nick) - ); - if($r) - $channel = $r[0]; - } + $channel = (($nick) ? get_channel_by_nick($nick) : false); if(! $channel) { if($using_api) |