View Issue Details

IDProjectCategoryView StatusLast Update
0008067mantisbtbugtrackerpublic2007-08-02 02:28
Reportermarc Assigned Tozakman  
PrioritynormalSeveritytweakReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.7 
Fixed in Version1.1.0a4 
Summary0008067: show status legend on top AND bottom
Description

For some newbies here, I would like to show the status legend bar on both the top and the bottom of the page.

Patch attached.

Additional Information

--- mantis-1.0.7/core/constant_inc.php 2006-10-23 09:14:42.000000000 +0200
+++ mantis-1.0.7_mine/core/constant_inc.php 2007-06-15 17:04:25.000000000 +0200
@@ -285,6 +285,7 @@

Status Legend Position

    define( 'STATUS_LEGEND_POSITION_TOP',           1);
    define( 'STATUS_LEGEND_POSITION_BOTTOM',        2);
  • define( 'STATUS_LEGEND_POSITION_BOTH', 3);

    # Filter Position
    define( 'FILTER_POSITION_NONE',                         0 );

    --- mantis-1.0.7/view_all_inc.php 2006-01-24 05:10:44.000000000 +0100
    +++ mantis-1.0.7_mine/view_all_inc.php 2007-06-13 12:21:38.000000000 +0200
    @@ -43,7 +43,8 @@

    # -- ====================== BUG LIST ============================ --
  • if ( STATUS_LEGEND_POSITION_TOP == config_get( 'status_legend_position' ) ) {

  • if ( STATUS_LEGEND_POSITION_TOP == config_get( 'status_legend_position' ) ||

  • STATUS_LEGEND_POSITION_BOTH == config_get( 'status_legend_position' ) ) {
    html_status_legend();
    }

@@ -192,7 +193,8 @@

    mark_time( 'end loop' );
  • if ( STATUS_LEGEND_POSITION_BOTTOM == config_get( 'status_legend_position' ) ) {
  • if ( STATUS_LEGEND_POSITION_BOTTOM == config_get( 'status_legend_position' ) ||
  • STATUS_LEGEND_POSITION_BOTH == config_get( 'status_legend_position' ) ) {
    html_status_legend();
    }
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Related Changesets

MantisBT: master 5ff9efb9

2007-07-03 09:07

zakman


Details Diff
Fixed Bug 0008067: show status legend on top AND bottom

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@4401 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
Affected Issues
0008067
mod - config_defaults_inc.php Diff File
mod - core/constant_inc.php Diff File
mod - my_view_page.php Diff File
mod - view_all_inc.php Diff File