Rename import/export, fix tests with parser

This commit is contained in:
Nabeel Shahzad
2018-03-21 19:12:36 -05:00
parent 276b93fc57
commit 9657e8bd40
9 changed files with 28 additions and 26 deletions

View File

@@ -90,6 +90,10 @@ class ImportExport
$children = [];
$kvp = explode('&', trim($query_str[1]));
foreach ($kvp as $items) {
if(!$items) {
continue;
}
$this->kvpToArray($items, $children);
}