Skip to content

Commit

Permalink
- Fixed a bug introduced by moving the fileicons.
Browse files Browse the repository at this point in the history
- Fixed #7089: Priority is not shown as text in "My view".


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@4103 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed May 18, 2006
1 parent a654ec2 commit a3b8f83
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions core/my_view_inc.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: my_view_inc.php,v 1.16 2005-08-07 13:42:04 thraxisp Exp $
# $Id: my_view_inc.php,v 1.17 2006-05-18 06:32:19 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -231,7 +231,13 @@
if ( !bug_is_readonly( $v_id ) && access_has_bug_level( $t_update_bug_threshold, $v_id ) ) {
echo '<a href="' . string_get_bug_update_url( $v_id ) . '"><img border="0" src="' . $t_icon_path . 'update.png' . '" alt="' . lang_get( 'update_bug_button' ) . '" /></a>';
}
print_status_icon( $v_priority );

if ( ON == config_get( 'show_priority_text' ) ) {
print_formatted_priority_string( $p_row['status'], $v_priority );
} else {
print_status_icon( $v_priority );
}

if ( 0 < $t_attachment_count ) {
echo '<a href="' . string_get_bug_view_url( $v_id ) . '#attachments">';
echo '<img border="0" src="' . $t_icon_path . 'attachment.png' . '"';
Expand Down
Binary file added images/ie.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions print_all_bug_page.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: print_all_bug_page.php,v 1.85 2006-04-22 04:33:04 vboctor Exp $
# $Id: print_all_bug_page.php,v 1.86 2006-05-18 06:32:19 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -125,10 +125,10 @@
$t_search = urlencode( $f_search );

$t_icons = array(
array( 'print_all_bug_page_excel', 'excel', '', 'excelicon.gif', 'Excel 2000' ),
array( 'print_all_bug_page_excel', 'html', 'target="_blank"', 'ieicon.gif', 'Excel View' ),
array( 'print_all_bug_page_word', 'word', '', 'wordicon.gif', 'Word 2000' ),
array( 'print_all_bug_page_word', 'html', 'target="_blank"', 'ieicon.gif', 'Word View' ) );
array( 'print_all_bug_page_excel', 'excel', '', 'fileicons/xls.gif', 'Excel 2000' ),
array( 'print_all_bug_page_excel', 'html', 'target="_blank"', 'ie.gif', 'Excel View' ),
array( 'print_all_bug_page_word', 'word', '', 'fileicons/doc.gif', 'Word 2000' ),
array( 'print_all_bug_page_word', 'html', 'target="_blank"', 'ie.gif', 'Word View' ) );

foreach ( $t_icons as $t_icon ) {
echo '<a href="' . $t_icon[0] . '.php' .
Expand Down

0 comments on commit a3b8f83

Please sign in to comment.