Index: openacs-4/packages/acs-templating/tcl/richtext-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/richtext-procs.tcl,v diff -u -N -r1.41 -r1.42 --- openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 25 Aug 2008 20:54:00 -0000 1.41 +++ openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 3 Sep 2008 16:11:23 -0000 1.42 @@ -410,7 +410,9 @@ if {[string first "safari" $user_agent] != -1} { regexp {version/([0-9]+)[.]} $user_agent _ user_agent_version - if {$user_agent_version < 3} { + # vguerra: checking if versions appears on the user agent; + # if not.. the user agent might be Chrome. + if {[info exists user_agent_version] && $user_agent_version < 3} { set element(htmlarea_p) false } } elseif {[string first "opera" $user_agent] != -1} {