9 lines
121 B
PHP
9 lines
121 B
PHP
<?php
|
|
/**
|
|
* @author mago
|
|
*/
|
|
|
|
function smarty_modifier_timeMod($string) {
|
|
return date('H:i',strtotime($string));
|
|
}
|
|
?>
|