mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Tidy codestyle - spaces between parenthesis and curly braces
This commit is contained in:
@@ -5,7 +5,7 @@ include("functions.php");
|
||||
|
||||
session_start();
|
||||
|
||||
if(isset($_GET['accept_quote'], $_GET['company_id'], $_GET['url_key'])){
|
||||
if (isset($_GET['accept_quote'], $_GET['company_id'], $_GET['url_key'])) {
|
||||
|
||||
$quote_id = intval($_GET['accept_quote']);
|
||||
$company_id = intval($_GET['company_id']);
|
||||
@@ -13,7 +13,7 @@ if(isset($_GET['accept_quote'], $_GET['company_id'], $_GET['url_key'])){
|
||||
|
||||
$sql = mysqli_query($mysqli,"SELECT * FROM quotes WHERE quote_id = $quote_id AND quote_url_key = '$url_key' AND company_id = $company_id");
|
||||
|
||||
if(mysqli_num_rows($sql) == 1){
|
||||
if (mysqli_num_rows($sql) == 1) {
|
||||
|
||||
mysqli_query($mysqli,"UPDATE quotes SET quote_status = 'Accepted' WHERE quote_id = $quote_id");
|
||||
|
||||
@@ -28,7 +28,7 @@ if(isset($_GET['accept_quote'], $_GET['company_id'], $_GET['url_key'])){
|
||||
|
||||
}
|
||||
|
||||
if(isset($_GET['decline_quote'], $_GET['company_id'], $_GET['url_key'])){
|
||||
if (isset($_GET['decline_quote'], $_GET['company_id'], $_GET['url_key'])) {
|
||||
|
||||
$quote_id = intval($_GET['decline_quote']);
|
||||
$company_id = intval($_GET['company_id']);
|
||||
@@ -36,7 +36,7 @@ if(isset($_GET['decline_quote'], $_GET['company_id'], $_GET['url_key'])){
|
||||
|
||||
$sql = mysqli_query($mysqli,"SELECT * FROM quotes WHERE quote_id = $quote_id AND quote_url_key = '$url_key' AND quote_url_key = '$url_key' AND company_id = $company_id");
|
||||
|
||||
if(mysqli_num_rows($sql) == 1){
|
||||
if (mysqli_num_rows($sql) == 1) {
|
||||
|
||||
mysqli_query($mysqli,"UPDATE quotes SET quote_status = 'Declined' WHERE quote_id = $quote_id");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user