sendpm.php 563 B

1234567891011121314151617181920212223242526272829303132333435
  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: sendpm.php 35183 2015-01-14 07:46:53Z nemohou $
  7. */
  8. if(!defined('IN_MOBILE_API')) {
  9. exit('Access Denied');
  10. }
  11. $_GET['mod'] = 'spacecp';
  12. $_GET['ac'] = 'pm';
  13. $_GET['op'] = 'send';
  14. include_once 'home.php';
  15. class mobile_api {
  16. function common() {
  17. $_POST = $_GET;
  18. }
  19. function output() {
  20. global $_G;
  21. $variable = array(
  22. 'pmid' => $GLOBALS['return']
  23. );
  24. mobile_core::result(mobile_core::variable($variable));
  25. }
  26. }
  27. ?>