using include_once now to include the class we extend and exclusivly the etemplate.html class

This commit is contained in:
Ralf Becker 2002-09-29 08:50:18 +00:00
parent 759a9f8e1a
commit 850a835f1c
5 changed files with 8 additions and 4 deletions

View File

@ -12,7 +12,7 @@
/* $Id$ */ /* $Id$ */
include(PHPGW_API_INC . '/../../etemplate/inc/class.soetemplate.inc.php'); include_once(PHPGW_INCLUDE_ROOT . '/etemplate/inc/class.soetemplate.inc.php');
/*! /*!
@class boetemplate @class boetemplate

View File

@ -17,4 +17,4 @@
{ {
$ui = '_gtk'; $ui = '_gtk';
} }
include(PHPGW_API_INC . "/../../etemplate/inc/class.uietemplate$ui.inc.php"); include_once(PHPGW_INCLUDE_ROOT . "/etemplate/inc/class.uietemplate$ui.inc.php");

View File

@ -12,7 +12,7 @@
/* $Id$ */ /* $Id$ */
include(PHPGW_API_INC . '/../../etemplate/inc/class.boetemplate.inc.php'); include_once(PHPGW_INCLUDE_ROOT . '/etemplate/inc/class.boetemplate.inc.php');
/*! /*!
@class etemplate @class etemplate

View File

@ -12,7 +12,7 @@
/* $Id$ */ /* $Id$ */
include(PHPGW_API_INC . '/../../etemplate/inc/class.boetemplate.inc.php'); include_once(PHPGW_INCLUDE_ROOT . '/etemplate/inc/class.boetemplate.inc.php');
/*! /*!
@class etemplate @class etemplate

View File

@ -39,4 +39,8 @@
'appname' => 'phpgwapi', 'appname' => 'phpgwapi',
'versions' => Array('0.9.13', '0.9.14','0.9.15') 'versions' => Array('0.9.13', '0.9.14','0.9.15')
); );
$setup_info['infolog']['depends'][] = array(
'appname' => 'etemplate',
'versions' => Array('0.9.13', '0.9.14','0.9.15')
);
?> ?>