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

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt (-1 / +1 lines)
Lines 383-389 Link Here
383
                                                    [% ELSE %]
383
                                                    [% ELSE %]
384
                                                        <label for="borrower_mobile">
384
                                                        <label for="borrower_mobile">
385
                                                    [% END %]
385
                                                    [% END %]
386
                                                    Mobile phone:</label>
386
                                                    Other phone:</label>
387
387
388
                                                    <input type="text" id="borrower_mobile" name="borrower_mobile" value="[% borrower.mobile %]" />
388
                                                    <input type="text" id="borrower_mobile" name="borrower_mobile" value="[% borrower.mobile %]" />
389
                                                    [% IF mandatory.defined('mobile') %]<span class="required">Required</span>[% END %]
389
                                                    [% IF mandatory.defined('mobile') %]<span class="required">Required</span>[% END %]
(-)a/opac/opac-memberentry.pl (-2 / +1 lines)
Lines 79-85 if ( $action eq 'create' ) { Link Here
79
        );
79
        );
80
    }
80
    }
81
    elsif (
81
    elsif (
82
        md5_base64( $cgi->param('captcha') ) ne $cgi->param('captcha_digest') )
82
        md5_base64( uc( $cgi->param('captcha') ) ) ne $cgi->param('captcha_digest') )
83
    {
83
    {
84
        $template->param(
84
        $template->param(
85
            failed_captcha => 1,
85
            failed_captcha => 1,
86
- 

Return to bug 7067