mirror of
https://github.com/retailcrm/legacy.git
synced 2024-11-22 13:26:03 +03:00
1fd90324ca
fix getDate method (add file not empty check)
23 lines
408 B
PHP
23 lines
408 B
PHP
<?php
|
|
|
|
if (
|
|
function_exists('date_default_timezone_set')
|
|
&&
|
|
function_exists('date_default_timezone_get')
|
|
) {
|
|
date_default_timezone_set(@date_default_timezone_get());
|
|
}
|
|
|
|
require_once 'bootstrap.php';
|
|
|
|
$shortopts = 'dluce:m:p:r:h:';
|
|
|
|
$options = getopt($shortopts);
|
|
|
|
if (isset($options['e'])) {
|
|
$command = new Command($options);
|
|
$command->run();
|
|
} else {
|
|
CommandHelper::runHelp();
|
|
}
|