Update of /cvsroot/phpvortex/phpvortex/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25259/test
Modified Files:
vortex_test_page.php
Log Message:
Changed the class initialization in vortex_test_page.php
Index: vortex_test_page.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test_page.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** vortex_test_page.php 6 Oct 2004 17:23:46 -0000 1.1
--- vortex_test_page.php 6 Oct 2004 19:51:49 -0000 1.2
***************
*** 21,38 ****
class Test_Page extends SEC_Page {
function Test_Page() {
! $this->header = array(
! 'class' => 'SEC_Header',
! 'opts' => array(
! 'title' => 'SEC_Page test page',
! 'styles' => array('tests.css')
! )
! );
! $this->content = array(
! 'class' => 'SEC_Static',
! 'opts' => array(
! 'code' => 'Page content'
)
! );
! parent::SEC_Page(array());
}
}
--- 21,39 ----
class Test_Page extends SEC_Page {
function Test_Page() {
! parent::SEC_Page(array(
! 'header' => array(
! 'class' => 'SEC_Header',
! 'opts' => array(
! 'title' => 'SEC_Page test page',
! 'styles' => array('tests.css')
! )
! ),
! 'content' => array(
! 'class' => 'SEC_Static',
! 'opts' => array(
! 'code' => 'Page content'
! )
)
! ));
}
}
|