Skip to content

Instantly share code, notes, and snippets.

@Gal3riel
Created January 26, 2014 16:29
Show Gist options
  • Save Gal3riel/8635271 to your computer and use it in GitHub Desktop.
Save Gal3riel/8635271 to your computer and use it in GitHub Desktop.
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: login.php 27451 2012-02-01 05:48:47Z monkey $
*/
if(!defined('IN_MOBILE_API')) {
exit('Access Denied');
}
$_GET['mod'] = 'logging';
$_GET['action'] = !empty($_GET['action']) ? $_GET['action'] : 'login';
include_once 'member.php';
class mobile_api {
function common() {
}
function output() {
global $_G;
$variable = array();
mobile_core::result(mobile_core::variable($variable));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment