summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/restfunctions.php
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2016-03-23 10:28:20 +0000
committerramon <ramongomez@us.es>2016-03-23 10:28:20 +0000
commit8083fb24e41b7812f271deafb70272e51865ec57 (patch)
tree6aafbf4e2487d8de1df99dab4d7bcfdf75257bd2 /admin/WebConsole/includes/restfunctions.php
parent83b9c80945e61056d617d66adf5acebb6c57569b (diff)
#739: Corregir errata en tiempo de conexión de peticiones REST.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4842 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/includes/restfunctions.php')
-rw-r--r--admin/WebConsole/includes/restfunctions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/WebConsole/includes/restfunctions.php b/admin/WebConsole/includes/restfunctions.php
index 5bea9c0b..3293cd51 100644
--- a/admin/WebConsole/includes/restfunctions.php
+++ b/admin/WebConsole/includes/restfunctions.php
@@ -27,7 +27,7 @@ function multiRequest($data, $options = array()) {
curl_setopt($curly[$id], CURLOPT_URL, $url);
curl_setopt($curly[$id], CURLOPT_HEADER, 0);
curl_setopt($curly[$id], CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curly[$id], CURLOPT_TIMEOUT, 1000);
+ curl_setopt($curly[$id], CURLOPT_TIMEOUT, 1);
// post?
if (is_array($d)) {