Skip to content

Commit

Permalink
Merge branch 'release/v3.3.22'
Browse files Browse the repository at this point in the history
  • Loading branch information
enfoqueNativo committed Dec 23, 2021
2 parents 39d7d64 + 20e6778 commit 36507c6
Show file tree
Hide file tree
Showing 10 changed files with 186 additions and 100 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,15 @@

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

[3.3.22](https://github.com/SIU-Toba/framework/releases/tag/v3.3.22) (2021-12-23)
- Fix por escapado multiple en mensajes de error
- Se actualizan los siguientes paquetes
* phpmailer/phpmailer: v6.5.3
* phpoffice/phpspreadsheet: v1.20.0
* nikic/php-parser: v4.13.2
* vlucas/phpdotenv: v3.6.10
* siu/arai-json-migrator: v1.1.0

[3.3.21](https://github.com/SIU-Toba/framework/releases/tag/v3.3.21) (2021-11-18)
- Actualizacion de seguridad de paquetes JS:
* CKEditor4: v4.17.1
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.3.21
3.3.22
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -26,7 +26,7 @@
"siu-toba/services_json": "^1.0.3.3",
"siu-toba/ssl-cert-utils": "~1.0",
"siu-toba/structures_graph": "^1.1.1.1",
"siu/arai-json-migrator": "~1.0",
"siu/arai-json-migrator": "~1.1",
"siu/manejador-salida-toba": "~1.1",
"siu/interfaces-manejador-salida-toba": "~1.2.0",
"siu/security-multitool": "~1.1",
Expand Down
251 changes: 163 additions & 88 deletions composer.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "siu-toba-framework",
"version": "3.3.21",
"version": "3.3.22",
"description": "Framework para desarrollo rápido de aplicaciones web",
"license": "SEE LICENSE IN licencia.txt",
"repository": "https://github.com/SIU-Toba/framework.git",
Expand Down
7 changes: 4 additions & 3 deletions php/modelo/toba_modelo_proyecto.php
Expand Up @@ -608,9 +608,10 @@ private function get_descripciones_items($datos)
{
$desc = array();
if (! empty($datos)) {
foreach (array_keys($datos['items']) as $fila) {
$desc[$fila['item']] = $fila['nombre'];
}
foreach (array_keys($datos['items']) as $indx) {
$fila = $datos['items'][$indx];
$desc[$fila['item']] = $fila['nombre'];
}
}
return $desc;
}
Expand Down
7 changes: 4 additions & 3 deletions php/nucleo/toba_solicitud_web.php
Expand Up @@ -141,7 +141,8 @@ protected function procesar_eventos()
if (toba::logger()->modo_debug()) {
$mensaje_debug = $escaper->escapeHtml($e->get_mensaje_log());
}
toba::notificacion()->error($escaper->escapeHtml($e->get_mensaje()), $mensaje_debug);

toba::notificacion()->error($e->get_mensaje(), $mensaje_debug);
toba::notificacion()->set_titulo($escaper->escapeHtml($e->get_titulo_ventana()));
}
}
Expand Down Expand Up @@ -270,7 +271,7 @@ protected function servicio__generar_html($objetos)
if (toba::logger()->modo_debug()) {
$mensaje_debug = $escaper->escapeHtml($e->get_mensaje_log());
}
toba::notificacion()->error($escaper->escapeHtml($e->get_mensaje()), $mensaje_debug);
toba::notificacion()->error($e->get_mensaje(), $mensaje_debug);
}
echo toba_js::cerrar();

Expand Down Expand Up @@ -447,7 +448,7 @@ protected function servicio__html_parcial($objetos)
if (toba::logger()->modo_debug()) {
$mensaje_debug = $escaper->escapeHtml($e->get_mensaje_log());
}
toba::notificacion()->error($escaper->escapeHtml($e->get_mensaje()), $mensaje_debug);
toba::notificacion()->error($e->get_mensaje(), $mensaje_debug);
}
}
toba::notificacion()->mostrar(false);
Expand Down
2 changes: 1 addition & 1 deletion proyectos/toba_editor/proyecto.ini
Expand Up @@ -6,7 +6,7 @@ mail_soporte =
url_ayuda = doc/wiki/trac/toba/wiki/

;Versi? del proyecto, debe ser formato x.y.z
version = 3.3.21
version = 3.3.22

;Nombre de fantas? de la versi?
version_fantasia =
Expand Down
2 changes: 1 addition & 1 deletion proyectos/toba_referencia/proyecto.ini
Expand Up @@ -8,7 +8,7 @@ url_ayuda_agregar_extension = 0
mostrar_resize_fuente = 1

;Versi? del proyecto, debe ser formato x.y.z
version = 3.3.21
version = 3.3.22
api_major = 1
api_minor = 0

Expand Down
2 changes: 1 addition & 1 deletion proyectos/toba_usuarios/proyecto.ini
Expand Up @@ -5,7 +5,7 @@ descripcion = Descripci? del proyecto
mail_soporte =

;Versi? del proyecto, debe ser formato x.y.z
version = 3.3.21
version = 3.3.22
app_launcher = 1

;Nombre de fantas? de la versi?
Expand Down

0 comments on commit 36507c6

Please sign in to comment.