Display the exact time of a posting

Claus Lampert Posted in Theme Development 7 years ago

I want to be able to see the exact time of a posting (mm.dd.yyyy) and not only the "nice time" like "10 hours ago".

I changed the file
componentsOssnWallpluginsdefaultwall emplateswalluseritem.php
in line 45 to

<span class="time-created"><abbr title="<?php echo date("d.m.Y h:m",$params['post']->time_created);?>"><?php echo ossn_user_friendly_time($params['post']->time_created);?></abbr></span>

The HTML-Tag <abbr> is not the smartest way to do this but it works for me. Maybe the core-team can do something like that in a better way in OSSN 4.x :-)

Replies
German Claus Lampert Replied 7 years ago

And I know: I should never ever (NEVER!!!) customize a core-component! :-)

German Claus Lampert Replied 7 years ago

Sorry, date must be "d.m.Y H:i" of course...