diff options
author | Sem <sembrestels@riseup.net> | 2013-11-09 16:27:50 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2013-11-09 16:27:50 +0100 |
commit | 77f0367d454711f1d00e1fcfc5d31147055cc66a (patch) | |
tree | a6eaa77c11d74b5e9f245470ed7101a5f0133438 /mod/beechat/actions/get_details.php | |
parent | 911d0021c374602c31e5bfd71b1cd8074f2c2293 (diff) | |
parent | 29be010b5837f36237216b187ad1d5988f98e8bc (diff) | |
download | elgg-77f0367d454711f1d00e1fcfc5d31147055cc66a.tar.gz elgg-77f0367d454711f1d00e1fcfc5d31147055cc66a.tar.bz2 |
Add 'mod/beechat/' from commit '29be010b5837f36237216b187ad1d5988f98e8bc'
git-subtree-dir: mod/beechat
git-subtree-mainline: 911d0021c374602c31e5bfd71b1cd8074f2c2293
git-subtree-split: 29be010b5837f36237216b187ad1d5988f98e8bc
Diffstat (limited to 'mod/beechat/actions/get_details.php')
-rw-r--r-- | mod/beechat/actions/get_details.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mod/beechat/actions/get_details.php b/mod/beechat/actions/get_details.php new file mode 100644 index 000000000..4944fc4a9 --- /dev/null +++ b/mod/beechat/actions/get_details.php @@ -0,0 +1,21 @@ +<?php + /** + * Beechat + * + * @package beechat + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Beechannels <contact@beechannels.com> + * @copyright Beechannels 2007-2010 + * @link http://beechannels.com/ + */ + + gatekeeper(); + header('Content-type: application/json'); + $user = $_SESSION['user']; + $t = array('username' => $user->username, + 'password' => $user->password); + + echo json_encode($t); + + exit(); +?> |