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

(-)a/authorities/authorities.pl (-1 / +5 lines)
Lines 604-610 if ($op eq "add") { Link Here
604
        } else {
604
        } else {
605
            ($authid) = AddAuthority($record,$authid,$authtypecode);
605
            ($authid) = AddAuthority($record,$authid,$authtypecode);
606
        }
606
        }
607
        print $input->redirect("detail.pl?authid=$authid");
607
        if ($myindex) {
608
            print $input->redirect("blinddetail-biblio-search.pl?authid=$authid&index=$myindex");
609
        } else {
610
            print $input->redirect("detail.pl?authid=$authid");
611
        }
608
        exit;
612
        exit;
609
    } else {
613
    } else {
610
    # it may be a duplicate, warn the user and do nothing
614
    # it may be a duplicate, warn the user and do nothing
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt (+1 lines)
Lines 584-589 function searchauthority() { Link Here
584
    <input type="hidden" name="repeat_field" value="" />
584
    <input type="hidden" name="repeat_field" value="" />
585
    <input type="hidden" name="authtypecode" value="[% authtypecode %]" />
585
    <input type="hidden" name="authtypecode" value="[% authtypecode %]" />
586
    <input type="hidden" name="authid" value="[% authid %]" />
586
    <input type="hidden" name="authid" value="[% authid %]" />
587
    <input type="hidden" name="index" value="[% index %]" />
587
    <input type="hidden" value="0" id="confirm_not_duplicate" name="confirm_not_duplicate" />
588
    <input type="hidden" value="0" id="confirm_not_duplicate" name="confirm_not_duplicate" />
588
589
589
	<div id="toolbar">
590
	<div id="toolbar">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt (-1 / +10 lines)
Lines 66-71 function jumpfull(page) Link Here
66
                    </td>
66
                    </td>
67
                    <td>&nbsp;</td>
67
                    <td>&nbsp;</td>
68
                </tr>
68
                </tr>
69
                <tr>
70
                    <td>&nbsp;</td>
71
                    <td>&nbsp;</td>
72
                    <td>
73
                        <a href="javascript:jumpfull('authorities.pl?index=[% index %]&authtypecode=[% authtypecode %]')" class="button">
74
                            Create new
75
                        </a>
76
                    </td>
77
                    <td>&nbsp;</td>
78
                </tr>
69
                [% FOREACH resul IN result %]
79
                [% FOREACH resul IN result %]
70
                    <tr>
80
                    <tr>
71
                        <td>[% PROCESS authresult summary=resul.summary %]</td>
81
                        <td>[% PROCESS authresult summary=resul.summary %]</td>
72
- 

Return to bug 8208