controlla di aver impostato nel file di lingua italian.php (prime righe) le funzioni per la stampa mesi in ITA.
osCommerceItalia - Comunità Italiana di Utenti e Sviluppatori osCommerce Per piacere NON scrivetemi in PM per richieste di aiuto, postate un nuovo topic nel forum.
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
function tep_date_raw($date, $reverse = false) {
if ($reverse) {
return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);
} else {
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
}
}
// if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language)
define('LANGUAGE_CURRENCY', 'EUR');
// Global entries for the <html> tag
define('HTML_PARAMS','dir="LTR" lang="it"');
// charset for web pages and emails
define('CHARSET', 'iso-8859-1');
osCommerceItalia - Comunità Italiana di Utenti e Sviluppatori osCommerce Per piacere NON scrivetemi in PM per richieste di aiuto, postate un nuovo topic nel forum.