Skip to content
Snippets Groups Projects
Commit 3e3af877 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: File name not complete

parent 28c28bd2
No related branches found
No related tags found
No related merge requests found
...@@ -186,6 +186,7 @@ foreach ($argv as $key => $value) ...@@ -186,6 +186,7 @@ foreach ($argv as $key => $value)
if ($value == 'filter=excludethirdparties') if ($value == 'filter=excludethirdparties')
{ {
$found=true; $found=true;
$option.=(empty($option)?'':'_').'excludethirdparties'.explode('-',$argv[$key+1]);
$filter[]='excludethirdparties'; $filter[]='excludethirdparties';
$thirdpartiesid=explode(',',$argv[$key+1]); $thirdpartiesid=explode(',',$argv[$key+1]);
...@@ -194,6 +195,7 @@ foreach ($argv as $key => $value) ...@@ -194,6 +195,7 @@ foreach ($argv as $key => $value)
if ($value == 'filter=onlythirdparties') if ($value == 'filter=onlythirdparties')
{ {
$found=true; $found=true;
$option.=(empty($option)?'':'_').'onlythirdparty'.explode('-',$argv[$key+1]);
$filter[]='onlythirdparties'; $filter[]='onlythirdparties';
$thirdpartiesid=explode(',',$argv[$key+1]); $thirdpartiesid=explode(',',$argv[$key+1]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment