diff options
author | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
commit | 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 (patch) | |
tree | 2376d950ba2bdc7753336a3e2b94865c95c238f2 /mod/wall_upload.php | |
parent | 2a61817bad96526994c0499f1fc0a843a9cc9405 (diff) | |
download | volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.gz volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.bz2 volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.zip |
module updates
Diffstat (limited to 'mod/wall_upload.php')
-rw-r--r-- | mod/wall_upload.php | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php deleted file mode 100644 index 54e2f8526..000000000 --- a/mod/wall_upload.php +++ /dev/null @@ -1,51 +0,0 @@ -<?php - -require_once('include/photo/photo_driver.php'); -require_once('include/identity.php'); -require_once('include/photos.php'); - - - -function wall_upload_post(&$a) { - - - $using_api = ((x($_FILES,'media')) ? true : false); - - if($using_api) { - require_once('include/api.php'); - $user_info = api_get_user($a); - $nick = $user_info['screen_name']; - } - else { - if(argc() > 1) - $nick = argv(1); - } - - $channel = (($nick) ? get_channel_by_nick($nick) : false); - - if(! $channel) { - if($using_api) - return; - notice( t('Channel not found.') . EOL); - killme(); - } - - $observer = App::get_observer(); - - $args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash'])); - - $ret = photo_upload($channel,$observer,$args); - - if(! $ret['success']) { - if($using_api) - return; - notice($ret['message']); - killme(); - } - - if($using_api) - return("\n\n" . $ret['body'] . "\n\n"); - else - echo "\n\n" . $ret['body'] . "\n\n"; - killme(); -} |