mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Minor fixes for imports
This commit is contained in:
parent
3fd78e1074
commit
7e8b09b146
@ -123,6 +123,7 @@ class ImportController extends Controller
|
||||
|
||||
$hit = false;
|
||||
$unsetKey = false;
|
||||
// array_multisort(array_column($translated_keys, 'label'), SORT_ASC, $translated_keys);
|
||||
|
||||
foreach($translated_keys as $tkey => $tvalue)
|
||||
{
|
||||
@ -131,10 +132,10 @@ class ImportController extends Controller
|
||||
$hit = $available_keys[$tvalue['key']];
|
||||
$unsetKey = $tkey;
|
||||
}
|
||||
elseif($this->testMatch($value, $tvalue['index'])) {
|
||||
$hit = $available_keys[$tvalue['key']];
|
||||
$unsetKey = $tkey;
|
||||
}
|
||||
// elseif($this->testMatch($value, $tvalue['index'])) {
|
||||
// $hit = $available_keys[$tvalue['key']];
|
||||
// $unsetKey = $tkey;
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
@ -148,13 +149,13 @@ class ImportController extends Controller
|
||||
|
||||
}
|
||||
|
||||
nlog($translated_keys);
|
||||
|
||||
return $hints;
|
||||
}
|
||||
|
||||
private function testMatch($haystack, $needle): bool
|
||||
{ nlog("needle = {$needle}");
|
||||
nlog("haystack = {$haystack}");
|
||||
|
||||
{
|
||||
return stripos($haystack, $needle) !== false;
|
||||
}
|
||||
|
||||
|
4
public/storage/.htaccess
Normal file
4
public/storage/.htaccess
Normal file
@ -0,0 +1,4 @@
|
||||
<Files *.php>
|
||||
Order deny,Allow
|
||||
Deny from all
|
||||
</Files>
|
0
storage/app/public/.gitignore
vendored
Executable file → Normal file
0
storage/app/public/.gitignore
vendored
Executable file → Normal file
Loading…
Reference in New Issue
Block a user