I added this enumeration lists on config_inc.php:
Code: Select all
$g_resolution_enum_string= '10:open, 20:fixed, 25:repaired, 30:reopened, 40:unable to duplicate, 50:not fixable, 60:duplicate, 70:not a bug'; #,80:suspended,90:wont fixThen I added also the $s_resolution_enum_string in custom_strings.php file as follow:
Code: Select all
$s_resolution_enum_string = '10:open, 20:fixed, 25:repaired, 30:reopened, 40:unable to duplicate, 50:not fixable, 60:duplicate, 70:not a bug'; #,80:suspended,90:wont fixI added also the constant to custom_constant_inc_phpReporter By Resolution open @\r\n 20@ @\r\n 25@ @\r\n 30@ @\r\n 40@ @\r\n 50@ @\r\n 60@ @\r\n 70@ % False
reporter_test_user 1 0 0 0 0 0 0 0 0%
Developer By Resolution open @\r\n 20@ @\r\n 25@ @\r\n 30@ @\r\n 40@ @\r\n 50@ @\r\n 60@ @\r\n 70@ % Fixed
Code: Select all
# resolution
define( 'OPEN', 10 );
define( 'FIXED', 20 );
define( 'REPAIRED', 25 );
define( 'REOPENED', 30 );
define( 'UNABLE_TO_DUPLICATE', 40 );
define( 'NOT_FIXABLE', 50 );
define( 'DUPLICATE', 60 );
define( 'NOT_A_BUG', 70 );
define( 'SUSPENDED', 80 );
define( 'WONT_FIX', 90 );Is there a Bug on summary_page.php code or DID I MISS SOMETHING? I look into the forum and into the manual and seems that I did not forget anything.
Any idea???