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/post.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/post.php')
-rw-r--r-- | mod/post.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/mod/post.php b/mod/post.php deleted file mode 100644 index 481a4a896..000000000 --- a/mod/post.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -/** - * @file mod/post.php - * - * @brief Zot endpoint. - * - */ - -require_once('include/zot.php'); - -function post_init(&$a) { - - if (array_key_exists('auth', $_REQUEST)) { - $x = new Zotlabs\Zot\Auth($_REQUEST); - exit; - } - -} - - -function post_post(&$a) { - - $z = new Zotlabs\Zot\Receiver($_REQUEST['data'],get_config('system','prvkey'), new Zotlabs\Zot\ZotHandler()); - - // notreached; - - exit; - -} |