mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-26 05:10:17 +02:00
Fixing a little bug in php<5.5
The bin/mage script returns "Can't use function return value in write context" in php<5.5
This commit is contained in:
parent
781213dd73
commit
b4421a7b57
4
bin/mage
4
bin/mage
@ -8,8 +8,8 @@
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
if (empty(ini_get('date.timezone'))) {
|
||||
$timezone = ini_get('date.timezone');
|
||||
if (empty($timezone)) {
|
||||
date_default_timezone_set('UTC');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user