Date: 01/14/00
- Next message: carmelo: "[PHPLIB-DEV] cvs commit"
- Previous message: kir: "[PHPLIB-DEV] cvs commit"
- Next in thread: carmelo: "[PHPLIB-DEV] cvs commit"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: carmelo
Date: Sat Jan 15 05:05:49 2000
Modified files:
php-lib/php/template.inc
Log message:
A little bug correction in template.inc file in the se_block function :
added he missing parenthesis
$this->block[$varname]["alias"] = "{".$name."}";
Index: php-lib/php/template.inc
diff -u php-lib/php/template.inc:1.10 php-lib/php/template.inc:1.11
--- php-lib/php/template.inc:1.10 Tue Dec 28 14:38:04 1999
+++ php-lib/php/template.inc Sat Jan 15 05:05:18 2000
@@ -5,7 +5,7 @@
* (C) Copyright 1999 NetUSE GmbH
* Kristian Koehntopp
*
- * $Id: template.inc,v 1.10 1999/12/28 13:38:04 tobias Exp $
+ * $Id: template.inc,v 1.11 2000/01/15 04:05:18 carmelo Exp $
*
*/
@@ -126,7 +126,9 @@
$name = $varname;
$this->block[$varname]["parent"] = $parent;
- $this->block[$varname]["alias"] = $name;
+ //carmelo
+ //correction to make the blocks work
+ $this->block[$varname]["alias"] = "{".$name."}";
return true;
}
-
PHPLIB Developers Mailing List. Send messages to <phplib-dev <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-dev-request <email protected>> in
the body, not the subject, of your message.
- Next message: carmelo: "[PHPLIB-DEV] cvs commit"
- Previous message: kir: "[PHPLIB-DEV] cvs commit"
- Next in thread: carmelo: "[PHPLIB-DEV] cvs commit"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

