--- loncom/interface/loncreateuser.pm 2016/09/18 18:10:54 1.406.2.3 +++ loncom/interface/loncreateuser.pm 2016/10/22 15:53:55 1.406.2.4 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Create a user # -# $Id: loncreateuser.pm,v 1.406.2.3 2016/09/18 18:10:54 raeburn Exp $ +# $Id: loncreateuser.pm,v 1.406.2.4 2016/10/22 15:53:55 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -6828,15 +6828,15 @@ sub user_search_result { } } if ($response ne '') { - $response = ''.$response.''; + $response = ''.$response.'
'; } if ($srch->{'srchin'} eq 'instd') { my $instd_chk = &instdirectorysrch_check($srch); if ($instd_chk ne 'ok') { my $domd_chk = &domdirectorysrch_check($srch); - $response = ''.$instd_chk.'
'; + $response .= ''.$instd_chk.'
'; if ($domd_chk eq 'ok') { - $response = &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'); + $response .= &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'); } $response .= '

'; } @@ -6845,9 +6845,9 @@ sub user_search_result { my $domd_chk = &domdirectorysrch_check($srch); if ($domd_chk ne 'ok') { my $instd_chk = &instdirectorysrch_check($srch); - $response = ''.$domd_chk.'
'; + $response .= ''.$domd_chk.'
'; if ($instd_chk eq 'ok') { - $response = &mt('You may want to search in the institutional directory instead of the LON-CAPA domain.'); + $response .= &mt('You may want to search in the institutional directory instead of the LON-CAPA domain.'); } $response .= '

'; }