--- loncom/interface/portfolio.pm 2012/06/08 12:25:59 1.235 +++ loncom/interface/portfolio.pm 2012/07/30 13:10:57 1.236 @@ -1,7 +1,7 @@ # The LearningOnline Network # portfolio browser # -# $Id: portfolio.pm,v 1.235 2012/06/08 12:25:59 raeburn Exp $ +# $Id: portfolio.pm,v 1.236 2012/07/30 13:10:57 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -981,11 +981,11 @@ sub build_access_summary { $showstart = &mt('Deleted'); $showend = $showstart; } else { - $showstart = localtime($start); + $showstart = &Apache::lonlocal::locallocaltime($start); if ($end == 0) { $showend = &mt('No end date'); } else { - $showend = localtime($end); + $showend = &Apache::lonlocal::locallocaltime($end); } } $r->print(''.&mt($scope_desc{$scope}));