Vergleich inc/class_core.php - 1.8.30 - 1.8.39

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 14Zeile 14
	 *
* @var string
*/

	 *
* @var string
*/

	public $version = "1.8.30";

	public $version = "1.8.39";


/**
* The version code of MyBB we're running.
*
* @var integer
*/


/**
* The version code of MyBB we're running.
*
* @var integer
*/

	public $version_code = 1830;

	public $version_code = 1839;


/**
* The current working directory.


/**
* The current working directory.

Zeile 184Zeile 184
	 * @var string
*/
public $asset_url = null;

	 * @var string
*/
public $asset_url = null;

 

/**
* @var array
*/
public $session = array();

/**
* @var string
*/
public $post_code;

/**
* @var array
*/
public $admin;


	/**
* String input constant for use with get_input().
*

	/**
* String input constant for use with get_input().
*

Zeile 261Zeile 277
		$this->parse_incoming($_GET);
$this->parse_incoming($_POST);


		$this->parse_incoming($_GET);
$this->parse_incoming($_POST);


		if($_SERVER['REQUEST_METHOD'] == "POST")

		if(isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == "POST")

		{
$this->request_method = "post";
}

		{
$this->request_method = "post";
}

		else if($_SERVER['REQUEST_METHOD'] == "GET")

		else

		{
$this->request_method = "get";
}

		{
$this->request_method = "get";
}