remove var_dump

This commit is contained in:
Frédéric FRANCE 2018-10-12 22:34:23 +02:00 committed by GitHub
parent d8edb1f6b8
commit 0f8ac57c85
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;