Index: openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl,v diff -u -N -r1.4 -r1.4.2.1 --- openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl 11 Jan 2008 00:36:18 -0000 1.4 +++ openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl 16 Oct 2013 10:43:27 -0000 1.4.2.1 @@ -59,15 +59,15 @@ $Id$ } -if {[template::util::is_nil doc(type)]} { +if {![info exists doc(type)]} { set doc(type) {} } if {![info exists doc(title)]} { set doc(title) "[ad_conn instance_name]" ns_log warning "[ad_conn url] has no doc(title) set." } -if {[template::util::is_nil doc(charset)]} { +if {![info exists doc(charset)]} { set doc(charset) [ns_config ns/parameters OutputCharset [ad_conn charset]] } Index: openacs-4/packages/ajaxhelper/www/doc/default-master.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/doc/default-master.tcl,v diff -u -N -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/ajaxhelper/www/doc/default-master.tcl 8 Sep 2013 08:11:58 -0000 1.1.2.1 +++ openacs-4/packages/ajaxhelper/www/doc/default-master.tcl 16 Oct 2013 10:43:27 -0000 1.1.2.2 @@ -17,7 +17,7 @@ set system_url [ad_url] } -if {[template::util::is_nil title]} { +if {![info exists title]} { # TODO: decide how best to set the lang attribute for the title set title [ad_conn instance_name] }