Update of /cvsroot/smarttemplate/smarttemplate
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv1441
Modified Files:
class.smarttemplate.php
Log Message:
corrected unset of global variable
Index: class.smarttemplate.php
===================================================================
RCS file: /cvsroot/smarttemplate/smarttemplate/class.smarttemplate.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** class.smarttemplate.php 2 Jul 2006 22:17:15 -0000 1.7
--- class.smarttemplate.php 23 Jul 2006 11:00:46 -0000 1.8
***************
*** 296,300 ****
}
// Delete Global Content Array in order to allow multiple use of SmartTemplate class in one script
! unset ($_top);
}
--- 296,300 ----
}
// Delete Global Content Array in order to allow multiple use of SmartTemplate class in one script
! unset ($GLOBALS['_top']);
}
|