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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc (-1 / +1 lines)
Lines 238-244 function confirm_items_deletion() { Link Here
238
	[% IF ( CAN_user_reserveforothers ) %]
238
	[% IF ( CAN_user_reserveforothers ) %]
239
    [% UNLESS ( norequests ) %]<li><a id="placehold" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]">Place hold</a></li>[% END %]
239
    [% UNLESS ( norequests ) %]<li><a id="placehold" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]">Place hold</a></li>[% END %]
240
	[% END %]
240
	[% END %]
241
    [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<li id="z3950searchc"><input type="button" id="z3950search" value="Z39.50 search" onclick="PopupZ3950(); return false;" /></li>[% END %]
241
	[% 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 %]
242
    </ul>
242
    </ul>
243
</form>
243
</form>
244
</div>
244
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-2 / +1 lines)
Lines 767-773 function unHideSubfield(index,labelindex) { // FIXME :: is it used ? Link Here
767
            type: "button",
767
            type: "button",
768
            label: _("Z39.50 Search"),
768
            label: _("Z39.50 Search"),
769
            container: "z3950searchc",
769
            container: "z3950searchc",
770
			onclick: {fn:function(){PopupZ3950()}}
770
            onclick: {fn:function(){if (confirm(_("Please note that this Z39.50 search could replace the current record."))) PopupZ3950()}}
771
        });
771
        });
772
	}
772
	}
773
773
774
- 

Return to bug 8583