notification on closed not work

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
|UVI|
Posts: 12
Joined: 02 Dec 2008, 12:20

notification on closed not work

Post by |UVI| »

Closed notification not work on mantis 1.1.8.

a piece of config_defaults_inc.php

Code: Select all

$g_status_enum_string = '10:new,20:analyzing,30:assigned,40:fixed,60:test,90:closed';

$g_status_enum_workflow[NEW_]='20:analyzing';
$g_status_enum_workflow[ANALYZING] ='30:assigned';
$g_status_enum_workflow[ASSIGNED] ='40:fixed';
$g_status_enum_workflow[FIXED] ='60:test';
$g_status_enum_workflow[TEST] ='10:new,90:closed';
$g_status_enum_workflow[CLOSED] ='10:new';
[code]

custom_constant_inc.php
[code]<?php
define ( 'TEST', 60 );
?>


custom_strings_inc.php

Code: Select all

<?php
  $s_status_enum_string = '10:nuova,20:presa in carico,30:assegnata,40:corretta,60:rilasciata in collaudo,90:chiusa';

  $s_analyzing_bug_button = "Prendi in carico";
   $s_analyzing_bug_title = "Imposta a: Presa in carico";
   $s_email_notification_title_for_status_bug_analyzing = "La seguente anomalia e' stata presa in carico per la lavorazione.";
   


   $s_assigned_bug_button = "Assegna a:";
   $s_assigned_bug_title = "Assegna a:";
   $s_email_notification_title_for_status_bug_assigned = "La seguente anomalia e' stata assegnata.";


   $s_fixed_bug_button = "Corretta";
   $s_fixed_bug_title = "Imposta a: Corretta";
   $s_email_notification_title_for_status_bug_fixed = "La seguente anomalia e' stata corretta.";



   $s_test_bug_button = "Rilasciata in collaudo";
   $s_test_bug_title = "Imposta a: Rilasciata in collaudo assegnando al stessa al segnalatore";
   $s_email_notification_title_for_status_bug_test = "La seguente anomalia e' stata rilasciata in collaudo e pronta per i test";

   $s_closed_bug_button = "Chiudi";
   $s_closed_bug_title = "Chiudi segnalazione";
   $s_email_notification_title_for_status_bug_closed = "La seguente anomalia e' stata chiusa";

?>

on log mail I see all related lines of mail notification except that related on closed bug
Why?
Post Reply