Skip to content
Snippets Groups Projects
Commit f650d8fd authored by Prasad's avatar Prasad
Browse files

Fixed #1661: Date value lost after mass-save of Services

parent c96a02d6
No related branches found
No related tags found
No related merge requests found
......@@ -109,8 +109,11 @@ class DateTimeField {
*/
public static function __convertToDBFormat($date, $format)
{
$dbDate = '';
if (empty($format)) {
$dbDate = '';
if (4 === strpos($date, '-')) {
// adjust format based on date value (could happen during edit-save)
$format = "yyyy-mm-dd";
} else if (empty($format)) {
if (false === strpos($date, '-')) {
if(false === strpos($date, '.')){
$format = 'dd/mm/yyyy';
......@@ -119,8 +122,8 @@ class DateTimeField {
}
} else {
$format = 'dd-mm-yyyy';
}
}
}
}
switch ($format) {
case 'dd.mm.yyyy':
list($d, $m, $y) = explode('.', $date);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment