forumupload.php 540 B

1234567891011121314151617181920212223242526272829303132
  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: forumupload.php 35181 2015-01-08 01:51:31Z nemohou $
  7. */
  8. if (!defined('IN_MOBILE_API')) {
  9. exit('Access Denied');
  10. }
  11. error_reporting(0);
  12. mobile_core::make_cors($_SERVER['REQUEST_METHOD'], REQUEST_METHOD_DOMAIN);
  13. $_GET['mod'] = 'swfupload';
  14. $_GET['action'] = 'swfupload';
  15. $_GET['operation'] = 'upload';
  16. include_once 'misc.php';
  17. class mobile_api {
  18. function common() {
  19. }
  20. function output() {
  21. }
  22. }
  23. ?>