phpBB

Code Changes

File: includes/constants.php

  Unmodified   Added   Modified   Removed
Line 28Line 28
*/

// phpBB Version

*/

// phpBB Version

@define('PHPBB_VERSION', '3.3.0-RC1');

@define('PHPBB_VERSION', '3.3.13');


// QA-related
// define('PHPBB_QA', 1);


// QA-related
// define('PHPBB_QA', 1);

Line 221Line 221
define('REFERER_VALIDATE_PATH', 2);

// phpbb_chmod() permissions

define('REFERER_VALIDATE_PATH', 2);

// phpbb_chmod() permissions

@define('CHMOD_ALL', 7);
@define('CHMOD_READ', 4);
@define('CHMOD_WRITE', 2);
@define('CHMOD_EXECUTE', 1);

@define('CHMOD_ALL', 7); // @deprecated 3.2.10
@define('CHMOD_READ', 4); // @deprecated 3.2.10
@define('CHMOD_WRITE', 2); // @deprecated 3.2.10
@define('CHMOD_EXECUTE', 1); // @deprecated 3.2.10


// Captcha code length
define('CAPTCHA_MIN_CHARS', 4);


// Captcha code length
define('CAPTCHA_MIN_CHARS', 4);

Line 247Line 247
define('BBCODES_TABLE',				$table_prefix . 'bbcodes');
define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks');
define('BOTS_TABLE', $table_prefix . 'bots');

define('BBCODES_TABLE',				$table_prefix . 'bbcodes');
define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks');
define('BOTS_TABLE', $table_prefix . 'bots');

@define('CONFIG_TABLE',				$table_prefix . 'config');




if (!defined('CONFIG_TABLE'))
{
define('CONFIG_TABLE', $table_prefix . 'config');
}

define('CONFIG_TEXT_TABLE',			$table_prefix . 'config_text');
define('CONFIRM_TABLE', $table_prefix . 'confirm');
define('DISALLOW_TABLE', $table_prefix . 'disallow');

define('CONFIG_TEXT_TABLE',			$table_prefix . 'config_text');
define('CONFIRM_TABLE', $table_prefix . 'confirm');
define('DISALLOW_TABLE', $table_prefix . 'disallow');