Why is the header of Admin Email Welcome page getting images from a different place from all other pages?
Instead of /zencart/images/logo.gif
it should be /zencart/admin/images/logo.gif
The same is happening with the "current version" button.
Possibly, it has something to do with "require language template"
in admin/email_welcome.php:
PHP Code:
if (file_exists(DIR_FS_CATALOG . DIR_WS_LANGUAGES . $_SESSION['language'] . (($template_dir=='') ? '' : '/'.$template_dir) .'/' . 'create_account.php')) {
require(DIR_FS_CATALOG . DIR_WS_LANGUAGES . $_SESSION['language'] . (($template_dir=='') ? '' : '/'.$template_dir) . '/' . 'create_account.php');
} else {
require(DIR_FS_CATALOG . DIR_WS_LANGUAGES . $_SESSION['language'] . '/' . 'create_account.php');
}
Anyone knows how to correct this?
Thanks