How to found Mantis 1.1.8? (without .bin installer )

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
kbzajunior
Posts: 8
Joined: 09 Jun 2010, 08:03

How to found Mantis 1.1.8? (without .bin installer )

Post by kbzajunior »

Hi from Spain!.

This is my 1st message, hi to all peeeople !!

Actually, im using Mantis 1.2.1 ( latest version ) and these version, is NOT compatible with notifications HTML ( i need insert code html into mail ) per email, yes, is true??
http://www.mantisbt.org/forums/viewtopi ... =3&t=10432

And............. i read that, in mantis 1.1.8 works perfect the plugin "HTMLmail", so.............

How can found these version? Mantis 1.1.8 ?

If........exists any solution for solved my problem ( in 1.2.1 ), i'll be very grateful!

Regards friends!
atrol
Site Admin
Posts: 8378
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: How to found Mantis 1.1.8? (without .bin installer )

Post by atrol »

kbzajunior wrote: How can found these version? Mantis 1.1.8 ?
It's here http://sourceforge.net/projects/mantisb ... able/1.1.8

For me having HTML mail has not that high priority so that I would use an old versions of MantisBT which is no longer supported.
It's your decision ....
Please use Search before posting and read the Manual
kbzajunior
Posts: 8
Joined: 09 Jun 2010, 08:03

Re: How to found Mantis 1.1.8? (without .bin installer )

Post by kbzajunior »

Thanks by all!
My solution is very very simple.. ( im a noob... very noob : :oops: )

In email_api.php, in tnhe line ------> $mail->IsHTML( true ); # before, true.......

0_o, lol......... chage false to true......and............ the answers receive in my mail in HTML format!

Thx again.....
atrol
Site Admin
Posts: 8378
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: How to found Mantis 1.1.8? (without .bin installer )

Post by atrol »

kbzajunior wrote: My solution is very very simple.
If this would be so simple I am pretty sure it would have been realized by development by just adding a configuration option for this.
If I remember right, I tried this some months ago and got problems with the content of the mail. That's the reason why I did not make this proposal.
Would be nice if you could share your expereince with this and post whether you get any problems.
Please use Search before posting and read the Manual
kbzajunior
Posts: 8
Joined: 09 Jun 2010, 08:03

Re: How to found Mantis 1.1.8? (without .bin installer )

Post by kbzajunior »

atrol wrote: If this would be so simple I am pretty sure it would have been realized by development by just adding a configuration option for this.
SURE 100%...of course....... thanks for our works!.


So.....other question.......i need know the name of state "need more data",
$s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed';

The state resolved, is $t_resolved, the state closed, is $t_closed...... but.......who is variable of feedback?
I need know, for when my bug it's typed = feedback ( need more datas.. ), send a mail.


Code: Select all


$t_resolved = config_get( 'bug_resolved_status_threshold' );
$t_feedback =  config_get( 'bug_XXXXXXXXXXXXX_status_threshold' );
if ( $t_bug_data->status == $t_resolved || $t_bug_data->status == $t_XXXXXXXX)
Thx

EDIT:

Exists this one: bug_feedback_status_threshold ???????
If exits...........problem solved..... if not.... i dont know....
kbzajunior
Posts: 8
Joined: 09 Jun 2010, 08:03

Re: How to found Mantis 1.1.8? (without .bin installer )

Post by kbzajunior »

I solved the question.......
Simply, in my custom function, add new integer for the new status ( in my case, feedback ).

if ( $t_bug_data->status == $t_resolved || $t_bug_data->status == 20) { // 80 is resolved, 90 is closed , 20 is feedback, ......
code for send email..........
}
Post Reply