From 6b8f2fb4ccc0f471c06131b6912d5e6486a4a729 Mon Sep 17 00:00:00 2001 From: David M Date: Thu, 3 Jan 2008 18:22:48 +0000 Subject: [PATCH] PHP, why do you break my heart? git-svn-id: file:///svn/phpbb/trunk@8299 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_profile_fields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php index d3b8a58915..7fb20c5911 100644 --- a/phpBB/includes/functions_profile_fields.php +++ b/phpBB/includes/functions_profile_fields.php @@ -22,7 +22,7 @@ if (!defined('IN_PHPBB')) */ class custom_profile { - const profile_types = array(FIELD_INT => 'int', FIELD_STRING => 'string', FIELD_TEXT => 'text', FIELD_BOOL => 'bool', FIELD_DROPDOWN => 'dropdown', FIELD_DATE => 'date'); + public $profile_types = array(FIELD_INT => 'int', FIELD_STRING => 'string', FIELD_TEXT => 'text', FIELD_BOOL => 'bool', FIELD_DROPDOWN => 'dropdown', FIELD_DATE => 'date'); private $profile_cache = array(); private $options_lang = array();