Update of /cvsroot/phpvortex/phpvortex
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1937
Modified Files:
SEC_Page.class.php
Log Message:
Fixed small (and again fatal) typo in SEC_Page
Index: SEC_Page.class.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/SEC_Page.class.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SEC_Page.class.php 6 Oct 2004 19:52:49 -0000 1.3
--- SEC_Page.class.php 7 Oct 2004 21:21:05 -0000 1.4
***************
*** 83,87 ****
$this->AddSection('body_open', 'SEC_Static', array('code' => "<body>".(!empty($this->onload)?" onload='{$this->onload}'":'')."\n"));
if (!empty($this->layout)) {
! foreach ($layout as $sect) {
$this->AddSection($sect['name'], $sect['class'], $sect['opts']);
}
--- 83,87 ----
$this->AddSection('body_open', 'SEC_Static', array('code' => "<body>".(!empty($this->onload)?" onload='{$this->onload}'":'')."\n"));
if (!empty($this->layout)) {
! foreach ($this->layout as $sect) {
$this->AddSection($sect['name'], $sect['class'], $sect['opts']);
}
|