Vergleich inc/class_core.php - 1.6.4 - 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 5495 2011-07-12 15:39:08Z Tomm $

 * $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.4";

	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 = 1604;

	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 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;
}