@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 2 +- t/db_dependent/selenium/authentication.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt @@ -4,7 +4,7 @@ [% USE Branches %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -Koha staff client +Koha staff interface [% Asset.css("css/mainpage.css") | $raw %] [% INCLUDE 'doc-head-close.inc' %] --- a/t/db_dependent/selenium/authentication.t +++ a/t/db_dependent/selenium/authentication.t @@ -66,7 +66,7 @@ SKIP: { $patron->flags(1)->store; # superlibrarian permission $s->auth( $patron->userid, $password ); - like( $driver->get_title, qr(Koha staff client), 'Patron with flags superlibrarian should be able to login' ); + like( $driver->get_title, qr(Koha staff interface), 'Patron with flags superlibrarian should be able to login' ); push @data_to_cleanup, $patron, $patron->category, $patron->library; }; --