--- loncom/interface/lonaboutme.pm 2009/04/03 10:46:13 1.122 +++ loncom/interface/lonaboutme.pm 2009/04/03 15:22:22 1.123 @@ -1,7 +1,7 @@ # The LearningOnline Network # Personal Information Page # -# $Id: lonaboutme.pm,v 1.122 2009/04/03 10:46:13 amueller Exp $ +# $Id: lonaboutme.pm,v 1.123 2009/04/03 15:22:22 amueller Exp $ # # Copyright Michigan State University Board of Trustees # @@ -223,13 +223,23 @@ sub handler { #Print Privacy Note if ($allowed) { - $r->print('

' + $r->print('

' .''.&mt('Privacy Note:').' ' .&mt('The information you submit can be viewed by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.') - .'

' + .'
' ); } +#Print last modified + + my $lastmod; + if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) { + $lastmod=$syllabus{'uploaded.lastmodified'}; + $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never')); + $r->print('
'); + $r->print(&mt('Last updated').': '.$lastmod . ''); + $r->print('
'); +} #Print Help Text if ($target ne 'tex') { if($allowed){ @@ -320,15 +330,9 @@ sub handler { &Apache::lonnet::put('aboutme',\%syllabus,$cdom,$cnum); } -my $lastmod; my $image; # ---------------------------------------------------------------- Get syllabus if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) { - $lastmod=$syllabus{'uploaded.lastmodified'}; - $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never')); - $r->print('
'.&mt('Last updated').': '.$lastmod); - - if ($syllabus{'uploaded.photourl'}) { &Apache::lonnet::allowuploaded('/adm/aboutme', $syllabus{'uploaded.photourl'});