Quote Originally Posted by nigelt74 View Post
Have you altered those lines?

could you post lines 20-25

define('FOOTER_TEXT_BODY', 'Copyright &copy; ' . date('Y') . ' <a href="http://www.kunst-stoff.com" target="_blank">kunst-stoff</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">zen-cart</a>');

// look in your $PATH_LOCALE/locale directory for available locales..
// on RedHat try 'en_US'
// on FreeBSD try 'en_US.ISO_8859-1'
// on Windows try 'en', or 'English'
@setlocale(LC_TIME, 'de_DE.ISO_8859-1'); geändert von MaleBorg
//@setlocale(LC_TIME, 'de_DE.UTF-8', 'de_AT.UTF-8', 'de_CH.UTF-8', 'de_DE.ISO_8859-1','de_DE@euro', 'de_DE', 'de', 'ge', 'deu.deu');
define('DATE_FORMAT_SHORT', '%d.%m %Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A, %d. %B %Y'); // this is used for strftime()
define('DATE_FORMAT', 'd.m.Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

////
// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
if (!function_exists('zen_date_raw')) {
function zen_date_raw($date, $reverse = false){
if ($reverse){
return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);
}else{
// edit by cyaneo for german Date support - thx to hugo13
// return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
}
}
}





there you go


A