13 lines
178 B
PHP
13 lines
178 B
PHP
<?php
|
|
/**
|
|
* @author mago
|
|
*/
|
|
|
|
function smarty_modifier_dateMod($string, $format='d.m.Y') {
|
|
$i = strtotime($string);
|
|
if($i == 0) {
|
|
return;
|
|
}
|
|
return date($format,$i);
|
|
}
|
|
?>
|