Revision Problem

Hier bekommst Du deutschsprachigen Support. Keine Fehlermeldungen oder Erweiterungswünsche bitte!
Post Reply
Hajo
Posts: 20
Joined: Tue 3. Apr 2007, 13:51
Contact:

Revision Problem

Post by Hajo »

Hallo,

kann mir jemand sagen was an dieser Anweisung falsch ist?

Code: Select all

<div style="text-align:left; padding:0px 0px 5px 0px; 
margin:0;" class="revision">
<hr noshade size="1px" width="275px">
Revision: { DATE_ARTICLE} - { TIME_ARTICLE} - &copy; Easy Computerworld
</div>
Bei mir wird imm er folgendes angezeigt:

Revision: { DATE_ARTICLE} - { TIME_ARTICLE} - © Easy Computerworld
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

Hallo,

wie wäre es, wenn du die Leerzeichen in den Tags rausnimmst ?

{ bla} ->{bla}

Dann geht das auch ;)
Hajo
Posts: 20
Joined: Tue 3. Apr 2007, 13:51
Contact:

Post by Hajo »

DF6IH wrote:Hallo,

wie wäre es, wenn du die Leerzeichen in den Tags rausnimmst ?

{ bla} ->{bla}

Dann geht das auch ;)
Danke das hat geholfen...

nun muß ich nur noch das US Datum geändert bekommen. Denn
noch sieht es so aus 2007/05/10.
isp-master
Posts: 85
Joined: Mon 26. Feb 2007, 17:44

Post by isp-master »

Hallo Hajo,

das umändern des Datum Formates wird in der Datei conf.template_default.inc.php vorgenommen.

Dort nach folgendem suchen:

Code: Select all

// date and time formatting
$template_default['date']['language']		= 'EN';         // DE=German, IT=Italian, FR=French
$template_default['date']['long']			= 'l, j. F Y';  // (Monday, 1. October 2003)
$template_default['date']['medium']			= 'D, j. M y';  // (Mon, 1. Oct 03)
$template_default['date']['short']			= 'Y/m/d';      // (2003/12/25)
$template_default['date']['article']		= 'Y/m/d';      // (2003/12/25)
$template_default['time']['long']			= 'H:i:s';      // 15:25:45
$template_default['time']['short']			= 'H:i';        // 15:25
Ändere z.B. bei $template_default['date']['article'] von "Y/m/d" nach "d/m/Y" um. Danach sollte das Datum korrekt angezeigt werden.

Viele Grüße aus Varel
Daniel
Hajo
Posts: 20
Joined: Tue 3. Apr 2007, 13:51
Contact:

Post by Hajo »

isp-master wrote:Hallo Hajo,

das umändern des Datum Formates wird in der Datei conf.template_default.inc.php vorgenommen.

Dort nach folgendem suchen:

Code: Select all

// date and time formatting
$template_default['date']['language']		= 'EN';         // DE=German, IT=Italian, FR=French
$template_default['date']['long']			= 'l, j. F Y';  // (Monday, 1. October 2003)
$template_default['date']['medium']			= 'D, j. M y';  // (Mon, 1. Oct 03)
$template_default['date']['short']			= 'Y/m/d';      // (2003/12/25)
$template_default['date']['article']		= 'Y/m/d';      // (2003/12/25)
$template_default['time']['long']			= 'H:i:s';      // 15:25:45
$template_default['time']['short']			= 'H:i';        // 15:25
Ändere z.B. bei $template_default['date']['article'] von "Y/m/d" nach "d/m/Y" um. Danach sollte das Datum korrekt angezeigt werden.

Viele Grüße aus Varel
Daniel
Grüße zurück nach Varel...

Nun siehts besser aus...muß nur noch schaun das es auch immer
Übernommen wird, da hackt es manchmal. Aber das werde ich
auch noch hinbekommen...

Gruß
Hajo
Post Reply