error message:
Quote
code from file 'class_email.php'
//-----------------------------------------
// Check and get
//-----------------------------------------
if ( ! file_exists($this->root_path."cache/lang_cache/$language/lang_email_content.php") )
{
if ( ! is_array( $lang ) )
{
$lang = array();
}
require_once( $this->root_path."cache/lang_cache/".$this->ipsclass->vars['default_language']."/lang_email_content.php" );
}
else
{
if ( ! is_array( $lang ) )
{
$lang = array();
}
require_once( $this->root_path."cache/lang_cache/$language/lang_email_content.php" );
}line 532 being:
require_once( $this->root_path."cache/lang_cache/".$this->ipsclass->vars['default_language']."/lang_email_content.php" );
I tried changing
/".$this->ipsclass->vars['default_language']."/
to
/$language/
but it still causes the error message so any help appreciated
thanks in advance
Richard.





Contributor













