pollvote.php 445 B

123456789101112131415161718192021222324252627
  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: pollvote.php 32489 2013-01-29 03:57:16Z monkey $
  7. */
  8. if(!defined('IN_MOBILE_API')) {
  9. exit('Access Denied');
  10. }
  11. $_GET['mod'] = 'misc';
  12. $_GET['action'] = 'votepoll';
  13. include_once 'forum.php';
  14. class mobile_api {
  15. function common() {
  16. }
  17. function output() {
  18. mobile_core::result(mobile_core::variable());
  19. }
  20. }
  21. ?>