Index: xotcl/library/actiweb/Invoker.xotcl =================================================================== diff -u -rad8a63234e44a8788efede276e811051ab891fbe -rbb3c756fb47517596b9dbcb4e580aa1212827b41 --- xotcl/library/actiweb/Invoker.xotcl (.../Invoker.xotcl) (revision ad8a63234e44a8788efede276e811051ab891fbe) +++ xotcl/library/actiweb/Invoker.xotcl (.../Invoker.xotcl) (revision bb3c756fb47517596b9dbcb4e580aa1212827b41) @@ -1,4 +1,4 @@ -# $Id: Invoker.xotcl,v 1.3 2005/09/09 21:09:01 neumann Exp $ +# $Id: Invoker.xotcl,v 1.4 2006/09/14 06:36:02 neumann Exp $ package provide xotcl::actiweb::invoker 0.8 @@ -42,7 +42,7 @@ set response "" if {[$place isExportedObj $obj]} { # if method is not given -> call default on the object - if {$method == ""} { + if {$method eq ""} { set method default } if {[$obj isExportedProc $method]} { @@ -101,7 +101,7 @@ ErrorMgr instproc isHtml o { if {[my isobject $o]} { if {[$o exists contentType]} { - if {[$o set contentType] == "text/html"} { + if {[$o set contentType] eq "text/html"} { return 1 } }