Merge pull request #9734 from frederic34/patch-9

remove var_dump
This commit is contained in:
Laurent Destailleur 2018-10-13 12:01:27 +02:00 committed by GitHub
commit 72381d3697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -599,7 +599,6 @@ function num_public_holiday($timestampStart, $timestampEnd, $countrycode='FR', $
foreach($arrayofdaystring as $daystring)
{
$tmp=explode('-',$daystring);
var_dump($tmp);
if ($tmp[2])
{
if ($tmp[0] == $annee && $tmp[1] == $mois && $tmp[2] == $jour) $ferie=true;