Vergleich inc/class_core.php - 1.6.4 - 1.6.6

  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 5641 2011-10-26 09:36:44Z Tomm $

 */

class MyBB {

 */

class MyBB {

Zeile 15Zeile 15
	 *
* @var string
*/

	 *
* @var string
*/

	public $version = "1.6.4";

	public $version = "1.6.6";

	
/**
* 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 = 1606;

	
/**
* The current working directory.

	
/**
* The current working directory.

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