diff --git a/Source/Source.API.php b/Source/Source.API.php index 17deddc..93e735f 100644 --- a/Source/Source.API.php +++ b/Source/Source.API.php @@ -129,7 +129,7 @@ } # Parse resolved bug links - if ( plugin_config_get( 'bugfix_resolve', null, 'Source' ) ) { + if ( plugin_config_get( 'bugfix_resolving', null, 'Source' ) ) { $t_resolved_bugs = array(); # Find and associate resolve links with the changeset diff --git a/Source/pages/manage_config.php b/Source/pages/manage_config.php index fe6f0d0..7c6d559 100644 --- a/Source/pages/manage_config.php +++ b/Source/pages/manage_config.php @@ -29,7 +29,7 @@ $f_buglink_regex_2 = gpc_get_string( 'buglink_regex_2' ); $f_buglink_reset_2 = gpc_get_string( 'buglink_reset_2', OFF ); -$f_bugfix_resolve = gpc_get_bool( 'bugfix_resolve' ); +$f_bugfix_resolving = gpc_get_bool( 'bugfix_resolving' ); $f_bugfix_regex_1 = gpc_get_string( 'bugfix_regex_1' ); $f_bugfix_reset_1 = gpc_get_string( 'bugfix_reset_1', OFF ); $f_bugfix_regex_2 = gpc_get_string( 'bugfix_regex_2' ); @@ -87,7 +87,7 @@ plugin_config_delete( 'buglink_regex_2' ); } -maybe_set_option( 'bugfix_resolve', $f_bugfix_resolve ); +maybe_set_option( 'bugfix_resolving', $f_bugfix_resolving ); if ( ! $f_bugfix_reset_1 ) { maybe_set_option( 'bugfix_regex_1', $f_bugfix_regex_1 );