Search found 13 matches

by matto
12 May 2008, 18:37
Forum: Help
Topic: Default
Replies: 2
Views: 2867

Re: Default

Not sure if this is still an issue for anyone, but I was just trying to do something similar to this and this was the only post I found on the topic. I found after sometime searching that there is a $g_hide_status_default that you can set in the config_inc.php to change what the default hide status ...
by matto
29 May 2007, 13:45
Forum: Customizations
Topic: Adding a Reviewer column/field to a bug
Replies: 6
Views: 8259

OK, thanks anyway, and again sorry about the confusion
by matto
29 May 2007, 13:31
Forum: Customizations
Topic: Adding a Reviewer column/field to a bug
Replies: 6
Views: 8259

I thought your suggestion was to have the handler reassign the issue when they set the status to resolved. I'm sorry if i misunderstood you. My question was if there is a way to force that; to make the handler set the assign to field when they change the status to resolved.
by matto
29 May 2007, 12:50
Forum: Customizations
Topic: Adding a Reviewer column/field to a bug
Replies: 6
Views: 8259

I had to do something similar to that, but people keep forgetting to reassign issues. I was wondering if there is a way to make assigned to a required field when changing status.
by matto
23 May 2007, 13:12
Forum: Help
Topic: Administrators Email Access
Replies: 2
Views: 3022

On the manage page in mantis, if you go into email notifications do you have the appropriate boxes check for administrators.
by matto
22 May 2007, 22:09
Forum: Help
Topic: NEW (maybe old news) - Change Status Background Color
Replies: 2
Views: 3788

If you are trying to change the color of a specific status you can do that by adding a line you config_inc.php file to over-write the color value. Something like this should be able to do it.
$g_status_colors['assigned'] = '#B09FF1';
by matto
22 May 2007, 12:55
Forum: Customizations
Topic: Adding Target Version to bug_change_status_page.php
Replies: 3
Views: 6442

you could put this before the code you added

<?php if ( 50 == $f_new_status ) { ?>

I'm pretty sure that assigned is status 50, but you can check the stats_enum_string in lang/strings_english.txt, or whatever language you're using, to find out what it is if that doesn't work.

and then after the ...
by matto
21 May 2007, 17:01
Forum: Customizations
Topic: Making Assign To required on Change Status
Replies: 0
Views: 3492

Making Assign To required on Change Status

I've had some problems with people forgetting to reassign a bug when it moved from development to testing. I have been able to get the assign to drop down list to default to blank, but now have the problem of people forgetting to change that to an actual value. I was wondering if anyone knew a way ...
by matto
12 Mar 2007, 16:20
Forum: Help
Topic: reassign but keep same status
Replies: 4
Views: 5453

Thank you. That is exactly what I was looking for.
by matto
08 Mar 2007, 22:55
Forum: Help
Topic: reassign but keep same status
Replies: 4
Views: 5453

reassign but keep same status

Is there any way to keep the assign to button on the view bug page from changing the status of the bug to assigned?
by matto
19 Feb 2007, 21:43
Forum: Customizations
Topic: Fields Containing Longer Strings
Replies: 1
Views: 5023

Fields Containing Longer Strings

I've been trying to get a custom field to hold a string longer than 255 characters. I edited the core/custome_fields.php file to allow for a textarea field, and modified the database to store the possible values, default values and value for custom fields as type text, which should hold 65,535 ...
by matto
09 Feb 2007, 21:41
Forum: Customizations
Topic: Change severities list for one project but not for the other
Replies: 1
Views: 4452

you can use the following to get the project id number and use that in a switch statement.

$p_project_id = helper_get_current_project();
by matto
31 Jan 2007, 19:21
Forum: Customizations
Topic: Automatically Change Custom Field Value with Status Change
Replies: 1
Views: 4977

Automatically Change Custom Field Value with Status Change

I'm looking for a way to automatically change the value of a custom field based on how the status of the bug is changed. The reason I'm looking to do this is because of the way I have the work flow setup. When a bug is resolved there are two different states it can be set to; Developed, signifying ...