Skip to content

Commit

Permalink
Update internalConsole.php
Browse files Browse the repository at this point in the history
Skip the convenience hidden file .tokeep in the parser (failed on this file)
  • Loading branch information
jhillairet authored Feb 26, 2018
1 parent 532dc41 commit 20aaa0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/internalConsole.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function parseReceivedSMS()
foreach (scandir(PWD_RECEIVEDS) as $dir)
{
//Si le fichier est un fichier système, on passe à l'itération suivante
if ($dir == '.' || $dir == '..')
if ($dir == '.' || $dir == '..' || $dir == '.tokeep')
{
continue;
}
Expand Down

0 comments on commit 20aaa0e

Please sign in to comment.