View | Details | Raw Unified | Return to bug 35681
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/skeleton.pl (-6 / +5 lines)
Lines 1-5 Link Here
1
use Modern::Perl;
1
use Modern::Perl;
2
use Term::ANSIColor;
2
use Koha::Installer::Output qw(say_warning say_failure say_success say_info);
3
3
4
return {
4
return {
5
    bug_number  => "BUG_NUMBER",
5
    bug_number  => "BUG_NUMBER",
Lines 31-39 return { Link Here
31
        say $out "Added 'XXX' HTML customization";
31
        say $out "Added 'XXX' HTML customization";
32
32
33
        # Other information
33
        # Other information
34
        say $out colored("Use red for danger/failure", 'red');
34
        say_failure("Use red for danger/failure");
35
        say $out colored("Use green for success", 'green');
35
        say_success("Use green for success");
36
        say $out colored("Use yellow for warning/a call to action", 'yellow');
36
        say_warning("Use yellow for warning/a call to action");
37
        say $out colored("Use blue for further information", 'blue');
37
        say_info("Use blue for further information");
38
    },
38
    },
39
};
39
};
40
- 

Return to bug 35681