mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-07-31 00:04:44 +02:00
add Cancel Button in user dashboard
This commit is contained in:
parent
8fcca70ead
commit
d71eb37f48
3 changed files with 24 additions and 9 deletions
|
@ -39,7 +39,11 @@ class Lang
|
|||
|
||||
public static function dateTimeFormat($date){
|
||||
global $config;
|
||||
return date($config['date_format']. ' H:i', strtotime($date));
|
||||
if(strtotime($date) < strtotime("2000-01-01 00:00:00")){
|
||||
return "";
|
||||
}else{
|
||||
return date($config['date_format']. ' H:i', strtotime($date));
|
||||
}
|
||||
}
|
||||
|
||||
public static function dateAndTimeFormat($date, $time){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue