https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25954 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@bugs.koha-c | |ommunity.org --- Comment #24 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- Owen, the following changes is causing t/db_dependent/selenium/administration_tasks.t to fail: diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc index a77b92c6d5..8640c2268e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc @@ -3,18 +3,22 @@ <h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Patrons Admin Resident Search Box --> <div id="header_search"> <div id="patron_category_search" class="residentsearch"> - <p class="tip">Search by patron category name:</p> <form action="[% script_name | html %]" method="post"> - <input class="head-searchbox" type="text" name="description" size="40" value="[% searchfield | html %]" /> + <label class="tip" for="description">Search by patron category name:</label> + <input class="head-searchbox" type="text" name="description" id="description" size="40" value="[% searchfield | html %]" /> There are now 2 elements with id="description" in the DOM. -- You are receiving this mail because: You are watching all bug changes.