Bug 16012: Restore the ability to edit default authority type

Bug 15380 introduced a regression on the authority types admin page: the
default authority type (authtypecode="") is no longer editable.

Test plan:
Edit the authority type to update the summary
=> Without this patch you will get the "add a new authority type" form
=> With this patch applied, the correct behavior will be restored

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
This commit is contained in:
Jonathan Druart 2016-03-09 11:16:07 +00:00 committed by Brendan Gallagher
parent f6463317db
commit 804e7d377b
2 changed files with 6 additions and 6 deletions

View file

@ -44,7 +44,7 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
if ( $op eq 'add_form' ) {
my $authority_type;
if ($authtypecode) {
if (defined $authtypecode) {
$authority_type = Koha::Authority::Types->find($authtypecode);
}

View file

@ -1,7 +1,7 @@
[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Administration &rsaquo; Authority types
[% IF op == 'add_form' %]
&rsaquo; [% IF authority_type.authtypecode %]Modify authority type[% ELSE %]New authority type[% END %]
&rsaquo; [% IF authority_type.authtypecode.defined %]Modify authority type[% ELSE %]New authority type[% END %]
[% ELSIF op == 'delete_confirm' %]
&rsaquo; Confirm deletion of authority type
[% END %]
@ -32,7 +32,7 @@
&rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
&rsaquo; <a href="/cgi-bin/koha/admin/authtypes.pl">Authority types</a>
[% IF op == 'add_form' %]
&rsaquo; [% IF authority_type.authtypecode %]Modify[% ELSE %]New[% END %] Authority type
&rsaquo; [% IF authority_type.authtypecode.defined %]Modify[% ELSE %]New[% END %] Authority type
[% ELSIF op == 'delete_confirm' %]
&rsaquo; Confirm deletion of authority type
[% END %]
@ -70,7 +70,7 @@
<form action="/cgi-bin/koha/admin/authtypes.pl" name="Aform" method="post" class="validated">
<fieldset class="rows">
<legend>
[% IF authority_type.authtypecode %]
[% IF authority_type.authtypecode.defined %]
Modify authority type
[% ELSE %]
New authority type
@ -78,7 +78,7 @@
</legend>
<ol>
<li>
[% IF authority_type.authtypecode %]
[% IF authority_type.authtypecode.defined %]
<span class="label">Authority type</span>
<input type="hidden" name="op" value="add_validate" />
<input type="hidden" name="checked" value="0" />
@ -103,7 +103,7 @@
<label for="auth_tag_to_report">Authority field to copy: </label>
<input type="text" id="auth_tag_to_report" name="auth_tag_to_report" size="5" maxlength="3" value="[% authority_type.auth_tag_to_report %]" />
<input type="hidden" name="op" value="add_validate" />
[% IF authority_type.authtypecode %]
[% IF authority_type.authtypecode.defined %]
<input type="hidden" name="is_a_modif" value="1" />
[% END %]
</li>