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