Do you have questions related to applications, FileMaker, our products or services? – contact us via e-mail.
We will reply as soon as possible.
/* HOT-FIX dla PHP 8.4: upewnij się, że to jest tablica */ if (!is_array($cookie_options)) { $cookie_options = []; // puste wartości -> warunki poniżej będą fałszywe zamiast wywalać warningi } /* Pomocnik do bezpiecznego pobierania zagnieżdżonych opcji */ if (!function_exists('npx_opt')) { function npx_opt($path, $default = null) { global $cookie_options; $a = $cookie_options; foreach ((array)$path as $k) { if (!is_array($a) || !array_key_exists($k, $a)) { return $default; } $a = $a[$k]; } return $a; } }
Do you have questions related to applications, FileMaker, our products or services? – contact us via e-mail.
We will reply as soon as possible.