buythread.php 819 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * [Discuz!] (C)2001-2099 Comsenz Inc.
  4. * This is NOT a freeware, use is subject to license terms
  5. *
  6. * $Id: buythread.php 34314 2014-02-20 01:04:24Z nemohou $
  7. */
  8. if(!defined('IN_MOBILE_API')) {
  9. exit('Access Denied');
  10. }
  11. $_GET['mod'] = 'misc';
  12. $_GET['action'] = 'pay';
  13. include_once 'forum.php';
  14. class mobile_api {
  15. function common() {
  16. }
  17. function output() {
  18. global $_G;
  19. $variable = array(
  20. 'authorid' => $GLOBALS['thread']['authorid'],
  21. 'author' => $GLOBALS['thread']['author'],
  22. 'price' => $GLOBALS['thread']['price'],
  23. 'balance' => $GLOBALS['balance'],
  24. 'credit' => mobile_core::getvalues($_G['setting']['extcredits'][$_G['setting']['creditstransextra'][1]], array('title', 'unit')),
  25. );
  26. mobile_core::result(mobile_core::variable($variable));
  27. }
  28. }
  29. ?>