Zeile 14 | Zeile 14 |
---|
* * @var string */
|
* * @var string */
|
public $version = "1.8.27";
| 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 = 1827;
| public $version_code = 1839;
|
/** * The current working directory.
| /** * The current working directory.
|
Zeile 184 | Zeile 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 261 | Zeile 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"; }
|