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

(-)a/installer/data/mysql/atomicupdate/skeleton.pl (-5 / +4 lines)
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_failure("Use red for danger/failure");
34
        say_failure( $out, "Use red for danger/failure" );
35
        say_success("Use green for success");
35
        say_success( $out, "Use green for success" );
36
        say_warning("Use yellow for warning/a call to action");
36
        say_warning( $out, "Use yellow for warning/a call to action" );
37
        say_info("Use blue for further information");
37
        say_info( $out, "Use blue for further information" );
38
    },
38
    },
39
};
39
};
40
- 

Return to bug 35681