|
From: Florin C B. <ory...@us...> - 2013-06-16 01:44:41
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31220 Modified Files: constants.php Log Message: Index: constants.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/constants.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** constants.php 5 Jun 2013 14:05:59 -0000 1.7 --- constants.php 16 Jun 2013 01:44:39 -0000 1.8 *************** *** 166,169 **** --- 166,187 ---- @define('FIELD_DATE', 6); + // referer validation + define('REFERER_VALIDATE_NONE', 0); + define('REFERER_VALIDATE_HOST', 1); + define('REFERER_VALIDATE_PATH', 2); + + // phpbb_chmod() permissions + @define('CHMOD_ALL', 7); + @define('CHMOD_READ', 4); + @define('CHMOD_WRITE', 2); + @define('CHMOD_EXECUTE', 1); + + // Captcha code length + define('CAPTCHA_MIN_CHARS', 4); + define('CAPTCHA_MAX_CHARS', 7); + + // Additional constants + define('VOTE_CONVERTED', 127); + // Additional constants @define('RANKS_PATH', 'images/ranks/'); |