X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fcreate_coy.php;h=db276a063fa5b0627a704966204fe9d40b45a6b5;hb=81dd5f392e49a94960c250053e375ed135ac9bad;hp=128da260f70bc4df96bd2cf6b1e9e47a73264f8c;hpb=f9f2b12c58b2eccdb515ef5a96688df8085858a0;p=fa-stable.git diff --git a/admin/create_coy.php b/admin/create_coy.php index 128da260..db276a06 100644 --- a/admin/create_coy.php +++ b/admin/create_coy.php @@ -25,11 +25,11 @@ $comp_subdirs = array('images', 'pdf_files', 'backup','js_cache', 'reporting', ' //--------------------------------------------------------------------------------------------- if (isset($_GET['selected_id'])) { - $selected_id = $_GET['selected_id']; + $selected_id = (int)$_GET['selected_id']; } elseif (isset($_POST['selected_id'])) { - $selected_id = $_POST['selected_id']; + $selected_id = (int)$_POST['selected_id']; } else $selected_id = -1; @@ -172,7 +172,7 @@ function handle_delete() { global $def_coy, $db_connections, $comp_subdirs, $path_to_root; - $id = $_GET['id']; + $id = (int)$_GET['id']; // First make sure all company directories from the one under removal are writable. // Without this after operation we end up with changed per-company owners!