We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/hrsetyono/wc-ongkir-indonesia/blob/05a40b9050e36bf1c1f1776c7455b9523db8640b/admin/ongkir-zone.php#L97C6-L97C114
$allowed_services = isset($this->main_settings[$setting_id]) ? $this->main_settings[$setting_id] : array();
mesti memastikan $allowed_service array?
$allowed_service
$allowed_services = isset($this->main_settings[$setting_id]) && is_array( $this->main_settings[$setting_id] ) ? $this->main_settings[$setting_id] : array();
Atau bisa juga
$allowed_services = isset($this->main_settings[$setting_id]) ? $this->main_settings[$setting_id] : array(); $allowed_services = is_array( $allowed_service ) ? $allowed_service : [];
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/hrsetyono/wc-ongkir-indonesia/blob/05a40b9050e36bf1c1f1776c7455b9523db8640b/admin/ongkir-zone.php#L97C6-L97C114
mesti memastikan
$allowed_service
array?Atau bisa juga
The text was updated successfully, but these errors were encountered: