--- loncom/interface/lonhtmlcommon.pm 2004/05/10 18:57:43 1.70 +++ loncom/interface/lonhtmlcommon.pm 2004/06/02 16:41:46 1.71 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.70 2004/05/10 18:57:43 matthew Exp $ +# $Id: lonhtmlcommon.pm,v 1.71 2004/06/02 16:41:46 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -868,17 +868,19 @@ sub crumbs { # ------------------------------------------------- Output headers for HTMLArea sub htmlareaheaders { - unless (&htmlareablocked()) { return ''; } + if (&htmlareablocked()) { return ''; } my $lang='en'; + if (&mt('htmlarea_lang') ne 'htmlarea_lang') { + $lang=&mt('htmlarea_lang'); + } return (< _editor_url="/htmlarea/"; - - - ENDHEADERS } @@ -886,7 +888,7 @@ ENDHEADERS # ---------------------------------------------------------- Script to activate sub htmlareaactive { - unless (&htmlareablocked()) { return ''; } + if (&htmlareablocked()) { return ''; } return (< HTMLArea.replaceAll(); @@ -897,8 +899,8 @@ ENDSCRIPT # --------------------------------------------------------------------- Blocked sub htmlareablocked { - unless (&htmlareabrowser()) { return ''; } - return 1; + unless (&htmlareabrowser()) { return 1; } + return 0; } # ---------------------------------------- Browser capable of running HTMLArea?