Skip to content

Commit

Permalink
Merge branch 'release/v3.0.28' into support/v3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
enfoqueNativo committed Aug 21, 2018
2 parents 108b8a5 + feb9c0e commit 79d94de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

[CURRENT](https://github.com/SIU-Toba/framework/compare/master...develop)

[3.0.287](https://github.com/SIU-Toba/framework/releases/tag/v3.0.28) (2018-08-21):
- Fix a los metodos toba_varios::acceso_post y toba_varios::acceso_get

[3.0.27](https://github.com/SIU-Toba/framework/releases/tag/v3.0.27) (2018-08-21):
- Actualiza el archivo .lock
- Agrega método para iniciar el contexto de ejecución en pedidos SOAP
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.27
3.0.28
4 changes: 2 additions & 2 deletions php/lib/toba_varios.php
Original file line number Diff line number Diff line change
Expand Up @@ -663,13 +663,13 @@ function sumar_medida($original, $agregado)
function acceso_post()
//Devuelde TRUE si la hoja se accedio por POST
{
return ($_SERVER["REQUEST_METHOD"]=="POST");
return (isset($_SERVER["REQUEST_METHOD"]) && $_SERVER["REQUEST_METHOD"]=="POST");
}

function acceso_get()
//Devuelve TRUE si el acceso se dio por GET
{
return ($_SERVER["REQUEST_METHOD"]=="GET");
return (isset($_SERVER["REQUEST_METHOD"]) && $_SERVER["REQUEST_METHOD"]=="GET");
}

function set_tiempo_maximo($tiempo="30")
Expand Down

0 comments on commit 79d94de

Please sign in to comment.