1
           
            
                
     
    
    Hi!
I've just hunted down a problem that just occured on two of my pages, but only in some modules:
LINKSome modules include files that also exist in the XOOPS root folder using
 include "name.php";  
When the XOOPS root path is entered in include_path in php.ini this resulted in
 die("XOOPS root path not defined");  
in the following modules (since it actually checked the include_path before the current directory):
smartpartner
newbb
myalbum
but not in the following:
news
tinycontent
xoopspoll
After seeing this behaviour, I would suggest every module author to use absolute paths for all includes - OR will this be a problem?