Updated application to use bool and int instead of boolean and integer. Also added an order by to the getSubscriptionCounties function
This commit is contained in:
+1
-1
@@ -645,7 +645,7 @@ class Base {
|
||||
|
||||
$zip_code = filter_input(INPUT_POST, "zip_code", FILTER_SANITIZE_NUMBER_INT) ?: 0;
|
||||
|
||||
$zip_code = (integer) substr((string) $zip_code, 0, 5);
|
||||
$zip_code = (int) substr((string) $zip_code, 0, 5);
|
||||
|
||||
$zipCodeDetail = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user