--- loncom/interface/lonwhatsnew.pm 2020/09/01 22:30:58 1.105.2.18 +++ loncom/interface/lonwhatsnew.pm 2021/01/01 15:29:14 1.105.2.19 @@ -1,7 +1,7 @@ # The LearningOnline Network # What's New in a course # -# $Id: lonwhatsnew.pm,v 1.105.2.18 2020/09/01 22:30:58 raeburn Exp $ +# $Id: lonwhatsnew.pm,v 1.105.2.19 2021/01/01 15:29:14 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1139,6 +1139,11 @@ sub check_handgraded { if (grep(/^essay$/,@types)) { $handgradeable=1; last; + } elsif (grep(/^custom$/,@types)) { + if ($resource->handgrade($part) eq 'yes') { + $handgradeable=1; + last; + } } } }