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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-1 / +1 lines)
Lines 4-10 Link Here
4
[% USE Branches %]
4
[% USE Branches %]
5
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Koha staff client</title>
7
<title>Koha staff interface</title>
8
[% Asset.css("css/mainpage.css") | $raw %]
8
[% Asset.css("css/mainpage.css") | $raw %]
9
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
10
</head>
10
</head>
(-)a/t/db_dependent/selenium/authentication.t (-2 / +1 lines)
Lines 66-72 SKIP: { Link Here
66
66
67
        $patron->flags(1)->store; # superlibrarian permission
67
        $patron->flags(1)->store; # superlibrarian permission
68
        $s->auth( $patron->userid, $password );
68
        $s->auth( $patron->userid, $password );
69
        like( $driver->get_title, qr(Koha staff client), 'Patron with flags superlibrarian should be able to login' );
69
        like( $driver->get_title, qr(Koha staff interface), 'Patron with flags superlibrarian should be able to login' );
70
70
71
        push @data_to_cleanup, $patron, $patron->category, $patron->library;
71
        push @data_to_cleanup, $patron, $patron->category, $patron->library;
72
    };
72
    };
73
- 

Return to bug 26015