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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-library.tt (+3 lines)
Lines 56-61 Link Here
56
        [% IF ( library.branchfax ) %]
56
        [% IF ( library.branchfax ) %]
57
            <p>Fax: <span property="faxNumber">[% library.branchfax | html %]</span></p>
57
            <p>Fax: <span property="faxNumber">[% library.branchfax | html %]</span></p>
58
        [% END %]
58
        [% END %]
59
        [% IF ( library.branchemail ) %]
60
            <p>Email: <a href="mailto:[% library.branchemail | url %]" property="email">[% library.branchemail | html %]</a></p>
61
        [% END %]
59
        [% IF ( library.branchurl ) %]
62
        [% IF ( library.branchurl ) %]
60
            <p><a href="[% library.branchurl | url %]" property="url">[% library.branchurl | html %]</a></p>
63
            <p><a href="[% library.branchurl | url %]" property="url">[% library.branchurl | html %]</a></p>
61
        [% END %]
64
        [% END %]
(-)a/t/lib/Selenium.pm (-2 / +1 lines)
Lines 218-224 sub click_when_visible { Link Here
218
    my $clicked;
218
    my $clicked;
219
    $self->remove_error_handler;
219
    $self->remove_error_handler;
220
    while ( not $clicked ) {
220
    while ( not $clicked ) {
221
        eval { $elt->click };
221
        eval { $self->driver->find_element($xpath_selector)->click };
222
        $clicked = !$@;
222
        $clicked = !$@;
223
        $self->driver->pause(1000) unless $clicked;
223
        $self->driver->pause(1000) unless $clicked;
224
    }
224
    }
225
- 

Return to bug 27051