From 16d1fddc52a3e046ebf9a4ca68ce4b6a35186077 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 3 Sep 2003 12:59:11 +0000 Subject: [PATCH] some more branding www.phpgroupware.org --> www.eGroupWare.org --- phpgwapi/inc/class.Template.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.Template.inc.php b/phpgwapi/inc/class.Template.inc.php index c71340c70a..9d642f0eb1 100644 --- a/phpgwapi/inc/class.Template.inc.php +++ b/phpgwapi/inc/class.Template.inc.php @@ -159,7 +159,10 @@ print "array: set *$k* to *$v*
\n"; } $this->varkeys[$k] = $this->varname($k); - $this->varvals[$k] = $this->egroupware_hack ? str_replace('phpGroupWare','eGroupWare',$v) : $v; + $this->varvals[$k] = $this->egroupware_hack ? str_replace( + array('phpGroupWare','www.phpgroupware.org'), + array('eGroupWare','www.eGroupWare.org'),$v + ) : $v; } } }