modification du path d'inclusion

This commit is contained in:
jlb 2003-08-31 22:07:10 +00:00
parent 3813c7fb6f
commit f15fc7f32b
6 changed files with 13 additions and 22 deletions

View File

@ -23,8 +23,6 @@ require("./pre.inc.php");
llxHeader(); llxHeader();
//$db = new Db();
print_titre("Gestion des adhesions a l'association"); print_titre("Gestion des adhesions a l'association");
print '<p><TABLE border="0" cellspacing="0" cellpadding="4">'; print '<p><TABLE border="0" cellspacing="0" cellpadding="4">';

View File

@ -20,14 +20,12 @@
* *
*/ */
require("./pre.inc.php"); require("./pre.inc.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherent.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherent_type.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
//require($GLOBALS["DOCUMENT_ROOT"]."/cotisation.class.php"); //require($GLOBALS["DOCUMENT_ROOT"]."/cotisation.class.php");
//require($GLOBALS["DOCUMENT_ROOT"]."/paiement.class.php"); //require($GLOBALS["DOCUMENT_ROOT"]."/paiement.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherents/adherent_options.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
//$db = new Db();
$adho = new AdherentOptions($db); $adho = new AdherentOptions($db);
$errmsg=''; $errmsg='';
$num=0; $num=0;

View File

@ -19,12 +19,11 @@
* $Source$ * $Source$
* *
*/ */
require($GLOBALS["DOCUMENT_ROOT"]."/main.inc.php3");
require("../../main.inc.php3");
function llxHeader($head = "") { function llxHeader($head = "") {
global $user, $conf; global $user, $conf;
/* /*
* *
* *

View File

@ -20,11 +20,10 @@
* *
*/ */
require("./pre.inc.php"); require("./pre.inc.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherent.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherent_type.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherents/adherent_options.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
//$db = new Db();
$adho = new AdherentOptions($db); $adho = new AdherentOptions($db);
$errmsg=''; $errmsg='';

View File

@ -21,14 +21,12 @@
* *
*/ */
require("./pre.inc.php"); require("./pre.inc.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherent.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherent_type.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/cotisation.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/cotisation.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/paiement.class.php"); require(DOL_DOCUMENT_ROOT."/paiement.class.php");
require($GLOBALS["DOCUMENT_ROOT"]."/adherents/adherent_options.class.php"); require(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
//$db = new Db();
$adho = new AdherentOptions($db); $adho = new AdherentOptions($db);
llxHeader(); llxHeader();

View File

@ -24,7 +24,6 @@ require("./pre.inc.php");
llxHeader(); llxHeader();
//$db = new Db();
if ($sortorder == "") { $sortorder="ASC"; } if ($sortorder == "") { $sortorder="ASC"; }
if ($sortfield == "") { $sortfield="nom"; } if ($sortfield == "") { $sortfield="nom"; }