Skip to content

Commit

Permalink
Sonarcloud Security
Browse files Browse the repository at this point in the history
  • Loading branch information
o-psi committed Mar 7, 2024
1 parent 0987851 commit fb100d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inventory_locations_manage.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

require_once "inc_all.php";

$inventory_location_id = $_GET["inventory_location_id"];
$inventory_location_id = intval($_GET["inventory_location_id"]);

//Rebuild URL
$url_query_strings_sort = http_build_query($get_copy);
Expand Down
2 changes: 1 addition & 1 deletion inventory_manage.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

require_once "inc_all.php";

$inventory_product_id = $_GET["inventory_product_id"];
$inventory_product_id = intval($_GET["inventory_product_id"]);

//Rebuild URL
$url_query_strings_sort = http_build_query($get_copy);
Expand Down

0 comments on commit fb100d6

Please sign in to comment.