Merge pull request #4237 from hregis/3.7_bug

Fix: PHP 7 - Fatal error: 'break' not in the 'loop' or 'switch' context
This commit is contained in:
Laurent Destailleur 2015-12-16 18:11:45 +01:00
commit 198e2cdcfa

View File

@ -1006,7 +1006,7 @@ function adodb_tz_offset($gmt,$isphp5)
return sprintf('%s%02d%02d',($gmt<=0)?'+':'-',floor($zhrs),($zhrs-$hrs)*60);
else
return sprintf('%s%02d%02d',($gmt<0)?'+':'-',floor($zhrs),($zhrs-$hrs)*60);
break;
//break;
}