Change filename year to 4-digits #576
This commit is contained in:
parent
68b9f99bdc
commit
29f1c34b2c
1 changed files with 2 additions and 2 deletions
|
|
@ -23,10 +23,10 @@ $blob_client = BlobRestProxy::createBlobService($conn_string);
|
||||||
$current_date = new DateTime();
|
$current_date = new DateTime();
|
||||||
$current_date->modify("-1 day");
|
$current_date->modify("-1 day");
|
||||||
|
|
||||||
$date = $current_date->format('m-d-y');
|
$date = $current_date->format('m-d-Y');
|
||||||
|
|
||||||
$filename = 'warrantylogs' . $date . '.csv';
|
$filename = 'warrantylogs' . $date . '.csv';
|
||||||
//print_r($filename);
|
error_log($filename);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// NOTE: via download blob
|
// NOTE: via download blob
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue