--- loncom/interface/loncommon.pm 2021/09/21 22:54:26 1.1366 +++ loncom/interface/loncommon.pm 2021/09/25 20:35:26 1.1367 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.1366 2021/09/21 22:54:26 raeburn Exp $ +# $Id: loncommon.pm,v 1.1367 2021/09/25 20:35:26 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -18296,9 +18296,10 @@ sub create_captcha { if (-e $Apache::lonnet::perlvar{'lonCaptchaDir'}.'/'.$md5sum.'.png') { $output = ''."\n". + ''. &mt('Type in the letters/numbers shown below').' '. ''. - '
'. + '

'. 'captcha'; last; } @@ -18344,7 +18345,8 @@ sub check_captcha { sub create_recaptcha { my ($pubkey,$version) = @_; if ($version >= 2) { - return '
'; + return '
'. + '
'; } else { my $use_ssl; if ($ENV{'SERVER_PORT'} == 443) {