Vergleich inc/class_core.php - 1.6.0 - 1.6.8

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 6Zeile 6
 * Website: http://mybb.com
* License: http://mybb.com/about/license
*

 * Website: http://mybb.com
* License: http://mybb.com/about/license
*

 * $Id: class_core.php 5115 2010-07-26 02:20:41Z RyanGordon $

 * $Id: class_core.php 5828 2012-05-08 16:06:16Z Tomm $

 */

class MyBB {

 */

class MyBB {

Zeile 15Zeile 15
	 *
* @var string
*/

	 *
* @var string
*/

	public $version = "1.6.0";

	public $version = "1.6.8";

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

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

	public $version_code = 1600;

	public $version_code = 1608;

	
/**
* The current working directory.

	
/**
* The current working directory.

Zeile 116Zeile 116
	/**
* Using built in shutdown functionality provided by register_shutdown_function for < PHP 5?
*/

	/**
* Using built in shutdown functionality provided by register_shutdown_function for < PHP 5?
*/

	public $use_shutdown = false;

	public $use_shutdown = true;

	
/**
* Debug mode?

	
/**
* Debug mode?

Zeile 155Zeile 155
		// Determine Magic Quotes Status (< PHP 6.0)
if(version_compare(PHP_VERSION, '6.0', '<'))
{

		// Determine Magic Quotes Status (< PHP 6.0)
if(version_compare(PHP_VERSION, '6.0', '<'))
{

			if(get_magic_quotes_gpc())

			if(@get_magic_quotes_gpc())

			{
$this->magicquotes = 1;
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}

			{
$this->magicquotes = 1;
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}

			set_magic_quotes_runtime(0);

			@set_magic_quotes_runtime(0);

			@ini_set("magic_quotes_gpc", 0);
@ini_set("magic_quotes_runtime", 0);
}

			@ini_set("magic_quotes_gpc", 0);
@ini_set("magic_quotes_runtime", 0);
}

Zeile 196Zeile 196
		}

// Are we running in debug mode?

		}

// Are we running in debug mode?

		if(isset($mybb->input['debug']) || preg_match("#[?&]debug=1#", $_SERVER['REQUEST_URI']))

		if(isset($this->input['debug']) && $this->input['debug'] == 1)

		{
$this->debug_mode = true;
}

		{
$this->debug_mode = true;
}