Skip to content

Commit

Permalink
Merge pull request #99 from jhillairet/master
Browse files Browse the repository at this point in the history
Skip .tokeep file in the SMS parser in internalConsole.php
  • Loading branch information
RaspbianFrance authored Feb 27, 2018
2 parents 532dc41 + 20aaa0e commit afc610e
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 afc610e

Please sign in to comment.