Sto usando AKOBLUEPORTAL..per quanto sia poco esperto, nei file del template non trovo nessun riferimento particolare alle date..ma, nell'index, in alto a destra, dove visualizzo la data, c'è un tag che richiama un date_format nella cartella includes del sito..
dentro il codice è il seguente, secondo te dipende da qui?
Ciao, buona giornata!
<?PHP
/**
* patTemplate modfifier Dateformat
*
* $Id: Dateformat.php 47 2005-09-15 02:55:27Z rhuk $
*
* @package patTemplate
* @subpackage Modifiers
* @author Stephan Schmidt <schst@php.net>
*/
/**
* patTemplate modfifier Dateformat
*
* formats dates and times according to a format string.
*
* Possible attributes are:
* - format (string)
*
* See the PHP documentation for strftime() for
* more information.
*
* @package patTemplate
* @subpackage Modifiers
* @author Stephan Schmidt <schst@php.net>
* @link
http://www.php.net/manual/en/function.strftime.php */
class patTemplate_Modifier_Dateformat extends patTemplate_Modifier
{
/**
* modify the value
*
* @access public
* @param string value
* @return string modified value
*/
function modify( $value, $params = array() )
{
if (!isset($params['format'])) {
return $value;
}
if (!preg_match('/^[0-9]+$/', $value)) {
$value = strtotime($value);
}
return strftime($params['format'], $value);
}
}
?>