This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Zeit umstellen


avatar
todi2004 0
From: -
Zeit umstellen

Hey Folks!

Ich würde gerne die Zeitanzeige bei den News ändern, also nicht wie standardmäßig
2005-12-09 16:22:13 sondern einfach nur die Uhrzeit.

Ich habe nun in der story.php folgende Zeile geändert:
$currentdate = date("H:i:s", mktime());
, aber nichts passiert!
Wo kann ich das umstellen?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Zeit umstellen
avatar
Administrator
1340
From: Vienna, Austria
Zeit umstellen

Das sollte funktionieren:
$insert[review_date] = date("d:m:Y",strtotime($insert[review_date]));
1 Re: Zeit umstellen
avatar
OP 0
From: -
Zeit umstellen

Wie kann bei der Review_List die Art des Datums umstellen, also nicht Y:m:d sondern d:m:Y??
1 Re: Zeit umstellen
avatar
OP 0
From: -
Zeit umstellen

OK, super danke!
1 Re: Zeit umstellen
avatar
Administrator
1340
From: Vienna, Austria
Zeit umstellen

Am besten änderst Du die entsprechenden Templates. Du musst folgende Änderung sowohl in der Template "news" als auch "story" durchführen

Nach:

<?php                                                                                                                                                                                          

global $insert;

fügst Du folgendes ein:

$insert[story_time] = date("H:i:s",strtotime($insert[story_time]));

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.