Max - modifies backend date function [skip ci]

This commit is contained in:
Max Red 2016-12-12 15:56:25 -03:00
parent 3d2fe3f1c9
commit be3cdf25f9
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?php
class Date {
public static function getCurrentDate() {
return date('Ymd');
return date('YmdHi');
}
}