View Issue Details

IDProjectCategoryView StatusLast Update
0009919mantisbtotherpublic2014-11-07 16:32
Reportermthibeault Assigned To 
PrioritynormalSeveritytextReproducibilityalways
Status newResolutionopen 
Product Version1.2.0a2 
Summary0009919: Confusion with view status on bug view page.
Description

On the different bug view pages, the last box before the submit is often "View Status" which relates to the note just over it instead of the complete bug. The view status that relates to the bug is way higher in comparison. They should not use the same name.

Additional Information

The patch added is against the latest GIT version, it only changes the "View Status" to "Note View Status" to clarify the context.

TagsNo tags attached.
Attached Files
bugnote_view_status.diff (3,175 bytes)   
diff -N -a --unified -r mantisbt/bug_actiongroup_add_note_inc.php mantisbt-bugnote/bug_actiongroup_add_note_inc.php
--- mantisbt/bug_actiongroup_add_note_inc.php	2008-11-30 14:16:41.000000000 -0500
+++ mantisbt-bugnote/bug_actiongroup_add_note_inc.php	2008-12-01 12:23:12.050341100 -0500
@@ -43,7 +43,7 @@
 	<!-- View Status -->
 	<tr class="row-2">
 	<td class="category">
-		<?php echo lang_get( 'view_status' ) ?>
+		<?php echo lang_get( 'bugnote_view_status' ) ?>
 	</td>
 	<td>
 <?php
diff -N -a --unified -r mantisbt/bug_change_status_page.php mantisbt-bugnote/bug_change_status_page.php
--- mantisbt/bug_change_status_page.php	2008-11-30 14:16:41.000000000 -0500
+++ mantisbt-bugnote/bug_change_status_page.php	2008-12-01 12:23:39.595629400 -0500
@@ -299,7 +299,7 @@
 <?php if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) ) { ?>
 <tr <?php echo helper_alternate_class() ?>>
 	<td class="category">
-		<?php echo lang_get( 'view_status' ) ?>
+		<?php echo lang_get( 'bugnote_view_status' ) ?>
 	</td>
 	<td>
 <?php
diff -N -a --unified -r mantisbt/bug_update_advanced_page.php mantisbt-bugnote/bug_update_advanced_page.php
--- mantisbt/bug_update_advanced_page.php	2008-11-30 14:16:41.000000000 -0500
+++ mantisbt-bugnote/bug_update_advanced_page.php	2008-12-01 12:24:39.857783100 -0500
@@ -586,7 +586,7 @@
 <?php if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) ) { ?>
 <tr <?php echo helper_alternate_class() ?>>
 	<td class="category">
-		<?php echo lang_get( 'private' ) ?>
+		<?php echo lang_get( 'bugnote_view_status' ) ?>
 	</td>
 	<td colspan="5">
 <?php
diff -N -a --unified -r mantisbt/bug_update_page.php mantisbt-bugnote/bug_update_page.php
--- mantisbt/bug_update_page.php	2008-11-30 14:16:41.000000000 -0500
+++ mantisbt-bugnote/bug_update_page.php	2008-12-01 12:25:23.136540100 -0500
@@ -398,7 +398,7 @@
 <?php if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) ) { ?>
 <tr <?php echo helper_alternate_class() ?>>
 	<td class="category">
-		<?php echo lang_get( 'view_status' ) ?>
+		<?php echo lang_get( 'bugnote_view_status' ) ?>
 	</td>
 	<td colspan="5">
 <?php
diff -N -a --unified -r mantisbt/bugnote_add_inc.php mantisbt-bugnote/bugnote_add_inc.php
--- mantisbt/bugnote_add_inc.php	2008-11-30 14:16:41.000000000 -0500
+++ mantisbt-bugnote/bugnote_add_inc.php	2008-12-01 12:22:53.176428300 -0500
@@ -51,7 +51,7 @@
 <?php if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) ) { ?>
 <tr class="row-1">
 	<td class="category">
-		<?php echo lang_get( 'view_status' ) ?>
+		<?php echo lang_get( 'bugnote_view_status' ) ?>
 	</td>
 	<td>
 <?php
diff -N -a --unified -r mantisbt/lang/strings_english.txt mantisbt-bugnote/lang/strings_english.txt
--- mantisbt/lang/strings_english.txt	2008-11-30 14:16:41.000000000 -0500
+++ mantisbt-bugnote/lang/strings_english.txt	2008-12-01 12:25:54.072258100 -0500
@@ -611,6 +611,7 @@
 
 # bug_update.php
 $s_bug_updated_msg = 'Issue has been successfully updated...';
+$s_bugnote_view_status = 'Note View Status';
 
 # bug_update_advanced_page.php
 $s_back_to_bug_link = 'Back To Issue';
bugnote_view_status.diff (3,175 bytes)   

Activities