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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt (-1 / +1 lines)
Lines 262-268 Link Here
262
                                                    <td>[% borrower.opacnote | html %]</td>
262
                                                    <td>[% borrower.opacnote | html %]</td>
263
                                                    <td>
263
                                                    <td>
264
                                                        [% FOREACH patron_message IN borrower.patron_messages %]
264
                                                        [% FOREACH patron_message IN borrower.patron_messages %]
265
                                                            [% patron_message.message %] <br>
265
                                                            [% patron_message.message | html %] <br>
266
                                                            <strong>
266
                                                            <strong>
267
                                                            [% IF (patron_message.message_type == 'B') %]
267
                                                            [% IF (patron_message.message_type == 'B') %]
268
                                                                ( OPAC )
268
                                                                ( OPAC )
(-)a/tools/modborrowers.pl (-2 / +1 lines)
Lines 439-445 if ( $op eq 'do' ) { Link Here
439
            }
439
            }
440
            $i++;
440
            $i++;
441
        }
441
        }
442
        # Créer un bloc pour enregistrer en bdd l'update de la table patron_messages + sécurité : 'si' tel champ est remplit alors.... etc
442
        # Create a block to save in database the patron_messages update + security slice : "if" this field is filled-up then...etc
443
        my $patron_messages = Koha::Patron::Messages->search(
443
        my $patron_messages = Koha::Patron::Messages->search(
444
            {
444
            {
445
                'me.borrowernumber' => $patron->borrowernumber,
445
                'me.borrowernumber' => $patron->borrowernumber,
446
- 

Return to bug 27123