Add a warning if a Z39.50 search is started from biblio edition page.
Warn the user that the current biblio record might be overwritten by this action. http://bugs.koha-community.org/show_bug.cgi?id=8583 Signed-off-by: Marc Veron <veron@veron.ch> Woks as expected. I prefer this solution with an explicit warning, since several times I acidentally changed a record :-) Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
ca80293756
commit
77c2a02c8c
2 changed files with 2 additions and 2 deletions
|
@ -238,7 +238,7 @@ function confirm_items_deletion() {
|
|||
[% IF ( CAN_user_reserveforothers ) %]
|
||||
[% UNLESS ( norequests ) %]<li><a id="placehold" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]">Place hold</a></li>[% END %]
|
||||
[% END %]
|
||||
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<li id="z3950searchc"><input type="button" id="z3950search" value="Z39.50 search" onclick="PopupZ3950(); return false;" /></li>[% END %]
|
||||
[% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<li id="z3950searchc"><input type="button" id="z3950search" value="Z39.50 Search" onclick="if (confirm(_('Please note that this Z39.50 search could replace the current record.'))){ PopupZ3950(); } return false;" /></li>[% END %]
|
||||
</ul>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -767,7 +767,7 @@ function unHideSubfield(index,labelindex) { // FIXME :: is it used ?
|
|||
type: "button",
|
||||
label: _("Z39.50 Search"),
|
||||
container: "z3950searchc",
|
||||
onclick: {fn:function(){PopupZ3950()}}
|
||||
onclick: {fn:function(){if (confirm(_("Please note that this Z39.50 search could replace the current record."))) PopupZ3950()}}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue