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

Merge branch '158610565' into 'master'

Fixes::158610565::madhusr::last scanned on time is displaying with both 12hrs and 24hrs format

See merge request !1100
parents 8c8a865d 4651c21f
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ class Settings_CronTasks_Record_Model extends Settings_Vtiger_Record_Model {
return $lastScannedTime;
} else {
$dateTimeList = explode(" ", $lastScannedTime);
return $dateTimeList[0]." ".date('g:i:sa', strtotime($dateTimeList[1]));
return $dateTimeList[0]." ".date('g:i A', strtotime($dateTimeList[1]));
}
} else {
return '';
......
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