Le vendredi 07 juillet 2006 à 00:37 -0400, Chris Morgan a écrit :
Use require() for path.php and include/incl.php. We can't proceed without these files. Use require_once() for all include/*.php files. To simplify inclusion each file includes the other files it needs. In this manner we don't have to include "mail.php" when we include "application.php", something that was done all over the place in the appdb. Remove unnecessary includes of mail.php and other classes that weren't being used. Add missing includes for some classes that were being used but not being included.
Chris
That makes sense to me.