--- loncom/interface/loncommon.pm 2013/08/20 14:33:42 1.1150 +++ loncom/interface/loncommon.pm 2013/09/06 00:34:57 1.1153 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.1150 2013/08/20 14:33:42 bisitz Exp $ +# $Id: loncommon.pm,v 1.1153 2013/09/06 00:34:57 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -6496,6 +6496,14 @@ div.LC_edit_problem_saves { white-space: nowrap; } +.LC_edit_problem_latexhelper{ + text-align: right; +} + +#LC_edit_problem_colorful div{ + margin-left: 40px; +} + img.stift { border-width: 0; vertical-align: middle; @@ -8045,7 +8053,11 @@ function expand_div(caller) { sub simple_error_page { my ($r,$title,$msg,$args) = @_; - if (!$args->{'no_auto_mt_msg'}) { $msg = &mt($msg); } + if (ref($args) eq 'HASH') { + if (!$args->{'no_auto_mt_msg'}) { $msg = &mt($msg); } + } else { + $msg = &mt($msg); + } my $page = &Apache::loncommon::start_page($title). @@ -14857,9 +14869,13 @@ sub check_captcha { sub create_recaptcha { my ($pubkey) = @_; + my $use_ssl; + if ($ENV{'SERVER_PORT'} == 443) { + $use_ssl = 1; + } my $captcha = Captcha::reCAPTCHA->new; return $captcha->get_options_setter({theme => 'white'})."\n". - $captcha->get_html($pubkey). + $captcha->get_html($pubkey,undef,$use_ssl). &mt('If either word is hard to read, [_1] will replace them.', 'reCAPTCHA refresh'). '

';