Bug 25364: Add "Other" to the gender options in a patron record
[koha.git] / members / memberentry.pl
index 985a964..671ec5c 100755 (executable)
@@ -650,6 +650,8 @@ if(!defined($data{'sex'})){
     $template->param( female => 1);
 } elsif ($data{'sex'} eq 'M'){
     $template->param(  male => 1);
+} elsif ($data{'sex'} eq 'O') {
+    $template->param( other => 1);
 } else {
     $template->param(  none => 1);
 }