@Chris.
I found some improvements within 2 core files:
File "admin/upload.php" line #83:
$filesArray[$count]['date'] = @date('M j, Y',$ss['ctime'])
could be changed by
$filesArray[$count]['date'] = @date($i18n['DATE_FORMAT'],$ss['ctime']);
File "admin/support.php" line #84:
<h3>Viewing Logs</h3>
could be changed by
<h3><?php echo $i18n['VIEWING'].' '.$i18n['LOG_FILE'];?></h3>
Now I'd made an error. The xml:lang MUST be like this:
global $LANG;
$LANG = preg_replace('/_/', '-', $LANG);
This is fine for the back-office header... but could you find a solution for the front-office files? GetSimple need a xml:lang into its DOCTYPE too
Best regards,
I found some improvements within 2 core files:
File "admin/upload.php" line #83:
$filesArray[$count]['date'] = @date('M j, Y',$ss['ctime'])
could be changed by
$filesArray[$count]['date'] = @date($i18n['DATE_FORMAT'],$ss['ctime']);
File "admin/support.php" line #84:
<h3>Viewing Logs</h3>
could be changed by
<h3><?php echo $i18n['VIEWING'].' '.$i18n['LOG_FILE'];?></h3>
Now I'd made an error. The xml:lang MUST be like this:
global $LANG;
$LANG = preg_replace('/_/', '-', $LANG);
This is fine for the back-office header... but could you find a solution for the front-office files? GetSimple need a xml:lang into its DOCTYPE too
Best regards,
Patrick.