Skip to content

Commit

Permalink
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
eldy committed Sep 17, 2014
2 parents 47d423a + b781cf2 commit 68ff0aa
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 27 deletions.
3 changes: 1 addition & 2 deletions dev/skeletons/skeleton_webservice_server.php
Expand Up @@ -269,5 +269,4 @@ function createSkeleton($authentication,$skeleton)
}

// Return the results.
$server->service($HTTP_RAW_POST_DATA);

$server->service(file_get_contents("php://input"));
2 changes: 1 addition & 1 deletion htdocs/webservices/server_actioncomm.php
Expand Up @@ -590,4 +590,4 @@ function updateActionComm($authentication,$actioncomm)
}

// Return the results.
$server->service($HTTP_RAW_POST_DATA);
$server->service(file_get_contents("php://input"));
4 changes: 1 addition & 3 deletions htdocs/webservices/server_category.php
Expand Up @@ -298,7 +298,5 @@ function getCategory($authentication,$id)
return $objectresp;
}


// Return the results.
$server->service($HTTP_RAW_POST_DATA);

$server->service(file_get_contents("php://input"));
4 changes: 2 additions & 2 deletions htdocs/webservices/server_contact.php
Expand Up @@ -712,6 +712,6 @@ function updateContact($authentication,$contact)

return $objectresp;
}
// Return the results.
$server->service($HTTP_RAW_POST_DATA);

// Return the results.
$server->service(file_get_contents("php://input"));
4 changes: 1 addition & 3 deletions htdocs/webservices/server_invoice.php
Expand Up @@ -587,7 +587,5 @@ function createInvoice($authentication,$invoice)
return $objectresp;
}


// Return the results.
$server->service((isset($HTTP_RAW_POST_DATA)?$HTTP_RAW_POST_DATA:''));

$server->service(file_get_contents("php://input"));
4 changes: 1 addition & 3 deletions htdocs/webservices/server_order.php
Expand Up @@ -798,7 +798,5 @@ function validOrder($authentication,$id='')
return $objectresp;
}


// Return the results.
$server->service((isset($HTTP_RAW_POST_DATA)?$HTTP_RAW_POST_DATA:''));

$server->service(file_get_contents("php://input"));
3 changes: 1 addition & 2 deletions htdocs/webservices/server_other.php
Expand Up @@ -321,5 +321,4 @@ function getDocument($authentication, $modulepart, $file, $refname='')
}

// Return the results.
$server->service($HTTP_RAW_POST_DATA);

$server->service(file_get_contents("php://input"));
5 changes: 1 addition & 4 deletions htdocs/webservices/server_productorservice.php
Expand Up @@ -1019,8 +1019,5 @@ function getProductsForCategory($authentication,$id,$lang='')
return $objectresp;
}



// Return the results.
$server->service($HTTP_RAW_POST_DATA);

$server->service(file_get_contents("php://input"));
4 changes: 1 addition & 3 deletions htdocs/webservices/server_supplier_invoice.php
Expand Up @@ -457,7 +457,5 @@ function getSupplierInvoicesForThirdParty($authentication,$idthirdparty)
return $objectresp;
}


// Return the results.
$server->service($HTTP_RAW_POST_DATA);

$server->service(file_get_contents("php://input"));
2 changes: 1 addition & 1 deletion htdocs/webservices/server_thirdparty.php
Expand Up @@ -728,4 +728,4 @@ function getListOfThirdParties($authentication,$filterthirdparty)
}

// Return the results.
$server->service($HTTP_RAW_POST_DATA);
$server->service(file_get_contents("php://input"));
4 changes: 1 addition & 3 deletions htdocs/webservices/server_user.php
Expand Up @@ -753,7 +753,5 @@ function setUserPassword($authentication,$shortuser) {
return $objectresp;
}


// Return the results.
$server->service($HTTP_RAW_POST_DATA);

$server->service(file_get_contents("php://input"));

0 comments on commit 68ff0aa

Please sign in to comment.