Skip to content

Commit

Permalink
Remove usage of deprecated constant
Browse files Browse the repository at this point in the history
Fixes #23488
  • Loading branch information
atrol committed Oct 17, 2017
1 parent 1a768a1 commit 2fba7ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config_defaults_inc.php
Expand Up @@ -1548,7 +1548,7 @@
* @global array $g_resolution_multipliers
*/
$g_resolution_multipliers = array(
UNABLE_TO_DUPLICATE => 2,
UNABLE_TO_REPRODUCE => 2,
NOT_FIXABLE => 1,
DUPLICATE => 3,
NOT_A_BUG => 5,
Expand Down Expand Up @@ -2067,7 +2067,7 @@
* threshold are considered to be resolved in an unsuccessful way.
* @global integer $g_bug_resolution_not_fixed_threshold
*/
$g_bug_resolution_not_fixed_threshold = UNABLE_TO_DUPLICATE;
$g_bug_resolution_not_fixed_threshold = UNABLE_TO_REPRODUCE;

/**
* Bug is closed. In some custom installations a bug may be considered as
Expand Down
2 changes: 1 addition & 1 deletion docbook/Admin_Guide/en-US/config/status.xml
Expand Up @@ -113,7 +113,7 @@
been resolved without being successfully fixed by
developers. Resolutions above this threshold are
considered to be resolved in an unsuccessful way.
Default value is UNABLE_TO_DUPLICATE.
Default value is UNABLE_TO_REPRODUCE.
</para>
</listitem>
</varlistentry>
Expand Down
2 changes: 1 addition & 1 deletion docbook/Admin_Guide/en-US/config/summary.xml
Expand Up @@ -83,7 +83,7 @@ $g_severity_multipliers = array ( FEATURE =&gt; 1,
$g_bug_resolution_not_fixed_threshold. The default
multipliers are:
<programlisting>
$g_resolution_multipliers = array( UNABLE_TO_DUPLICATE =&gt; 2,
$g_resolution_multipliers = array( UNABLE_TO_REPRODUCE =&gt; 2,
NOT_FIXABLE =&gt; 1,
DUPLICATE =&gt; 3,
NOT_A_BUG =&gt; 5,
Expand Down

0 comments on commit 2fba7ee

Please sign in to comment.