Index: openacs-4/packages/acs-tcl/lib/page-error.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/lib/page-error.adp,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/acs-tcl/lib/page-error.adp	26 Feb 2005 00:24:17 -0000	1.4
+++ openacs-4/packages/acs-tcl/lib/page-error.adp	17 Aug 2007 16:44:08 -0000	1.5
@@ -1,4 +1,4 @@
-<master>
+<master src=/www/default-master>
   <property name="title">#acs-tcl.Server#</property>
 <p>
   #acs-tcl.There#
Index: openacs-4/packages/acs-tcl/tcl/pools-init.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/pools-init.tcl,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-tcl/tcl/pools-init.tcl	17 Aug 2007 16:40:26 -0000	1.1
+++ openacs-4/packages/acs-tcl/tcl/pools-init.tcl	17 Aug 2007 16:44:08 -0000	1.2
@@ -2,10 +2,10 @@
 
 set minthreads [ns_config $cfgsection minthreads 0]
 set maxthreads [ns_config $cfgsection maxthreads 10]
-set maxconns [ns_config $cfgsection maxconnections 0]
+set maxconnections [ns_config $cfgsection maxconnections 0]
 set timeout [ns_config $cfgsection threadtimeout 0]
 
-ns_pools set default -minthreads $minthreads -maxthreads $maxthreads -maxconns $maxconns -timeout $timeout
+ns_pools set default -minthreads $minthreads -maxthreads $maxthreads -maxconnections $maxconnections -timeout $timeout
 
 ns_log Notice "Default Pool: [ns_pools get default]"
 
@@ -28,10 +28,10 @@
 	}
 	set poolMinthreads [ns_config $poolConfigSection minthreads $minthreads]
 	set poolMaxthreads [ns_config $poolConfigSection maxthreads $maxthreads]
-	set poolMaxconns   [ns_config $poolConfigSection maxconnections $maxconns]
+	set poolMaxconnections   [ns_config $poolConfigSection maxconnections $maxconnections]
 	set poolTimeout    [ns_config $poolConfigSection threadtimeout $timeout]
 	
-	ns_pools set $poolName -minthreads $poolMinthreads -maxthreads $poolMaxthreads -maxconns $poolMaxconns -timeout $poolTimeout
+	ns_pools set $poolName -minthreads $poolMinthreads -maxthreads $poolMaxthreads -maxconnections $poolMaxconnections -timeout $poolTimeout
 	ns_log Notice  "$poolName Pool: [ns_pools get $poolName]"
 	set poolConfigSize [ns_set size $poolConfigSet]
 	for {set j 0} {$j < $poolConfigSize} {incr j} {