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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 830-836 Link Here
830
                                                    <em>"[% message.message | html %]"</em>
830
                                                    <em>"[% message.message | html %]"</em>
831
                                                </span>
831
                                                </span>
832
                                                [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %]
832
                                                [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %]
833
                                                    <a class="btn btn-link" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id | html %]&amp;borrowernumber=[% message.borrowernumber | html %]" onclick="return confirm(_('Are you sure you want to delete this message? This cannot be undone.'));"><i class="fa fa-trash"></i> Delete</a>
833
                                                    <a class="btn btn-link" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id | html %]&amp;borrowernumber=[% message.borrowernumber | html %]" onclick='return confirm(_("Are you sure you want to delete this message? This cannot be undone."));'><i class="fa fa-trash"></i> Delete</a>
834
                                                [% END %]
834
                                                [% END %]
835
                                            </li>
835
                                            </li>
836
                                        [% END %]
836
                                        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +1 lines)
Lines 98-104 Link Here
98
                                                <em>"[% patron_message.message | html %]"</em>
98
                                                <em>"[% patron_message.message | html %]"</em>
99
                                            </span>
99
                                            </span>
100
                                            [% IF patron_message.branchcode == patron.branchcode OR Koha.Preference('AllowAllMessageDeletion') %]
100
                                            [% IF patron_message.branchcode == patron.branchcode OR Koha.Preference('AllowAllMessageDeletion') %]
101
                                                <a class="btn btn-link" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% patron_message.message_id | html %]&amp;borrowernumber=[% patron_message.borrowernumber | html %]&amp;from=moremember" onclick="return confirm(_('Are you sure you want to delete this message? This cannot be undone.'));"><i class="fa fa-trash"></i> Delete</a>
101
                                                <a class="btn btn-link" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% patron_message.message_id | html %]&amp;borrowernumber=[% patron_message.borrowernumber | html %]&amp;from=moremember" onclick='return confirm(_("Are you sure you want to delete this message? This cannot be undone."));'><i class="fa fa-trash"></i> Delete</a>
102
                                            [% END %]
102
                                            [% END %]
103
                                        </li>
103
                                        </li>
104
                                    [% END %]
104
                                    [% END %]
105
- 

Return to bug 26243