diff options
author | ramon <ramongomez@us.es> | 2016-03-31 06:24:58 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2016-03-31 06:24:58 +0000 |
commit | bd1a87299a1dc03872c8a0aecd01def35d62439b (patch) | |
tree | 3ee321e2772e670d4023e2c3fe660bade0860206 /admin | |
parent | 2a31d57ef11638003d433c1ce411e05c71d208d4 (diff) |
#718: Corregir errata en revisión r4852, debe evitarse el envÃo de caracteres fuera del código PHP porque se añaden al fichero a descargar.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4853 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin')
4 files changed, 7 insertions, 7 deletions
diff --git a/admin/WebConsole/descargas/index.php b/admin/WebConsole/descargas/index.php index 3a856d10..d6ff884d 100644 --- a/admin/WebConsole/descargas/index.php +++ b/admin/WebConsole/descargas/index.php @@ -1,11 +1,15 @@ <?php +// Warning: Don't left any character outside PHP code. +// +// Choose a file on this directory to download via Apache. + include_once("../includes/ctrlacc.php"); include_once("../clases/AdoPhp.php"); include_once("../includes/CreaComando.php"); -include_once("../idiomas/php/".$idioma."/propiedades_ordenadores_".$idioma.".php"); +include_once("../idiomas/php/".$idioma."/descargas_".$idioma.".php"); $cmd=CreaComando($cadenaconexion); // Crea objeto comando if (!$cmd) - header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D. + header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D. // Security tip: change to local directory. $oldpwd=getcwd(); @@ -52,5 +56,5 @@ function sendFile($file) { } } +// Warning: Don't left any character outside PHP code. ?> - diff --git a/admin/WebConsole/idiomas/php/cat/propiedades_ordenadores_cat.php b/admin/WebConsole/idiomas/php/cat/propiedades_ordenadores_cat.php index 149aaa10..7c7c539f 100644 --- a/admin/WebConsole/idiomas/php/cat/propiedades_ordenadores_cat.php +++ b/admin/WebConsole/idiomas/php/cat/propiedades_ordenadores_cat.php @@ -25,6 +25,5 @@ $TbMsg[5091]="Afegir foto"; $TbMsg[5092]="Veure fotos"; $TbMsg[495]="Data/Caché"; $TbMsg[4951]="Caché lliure"; -$TbMsg['DOWNLOADS']="descàrregues disponibles"; ?> diff --git a/admin/WebConsole/idiomas/php/eng/propiedades_ordenadores_eng.php b/admin/WebConsole/idiomas/php/eng/propiedades_ordenadores_eng.php index 595f6aec..a2399bc1 100644 --- a/admin/WebConsole/idiomas/php/eng/propiedades_ordenadores_eng.php +++ b/admin/WebConsole/idiomas/php/eng/propiedades_ordenadores_eng.php @@ -25,6 +25,5 @@ $TbMsg[5091]="Insert Photo"; $TbMsg[5092]="View Images"; $TbMsg[495]="Content Cache"; $TbMsg[4951]="Cache Free"; -$TbMsg['DOWNLOADS']="Available downloads"; ?> diff --git a/admin/WebConsole/idiomas/php/esp/propiedades_ordenadores_esp.php b/admin/WebConsole/idiomas/php/esp/propiedades_ordenadores_esp.php index 5b1a0ff4..312386e7 100644 --- a/admin/WebConsole/idiomas/php/esp/propiedades_ordenadores_esp.php +++ b/admin/WebConsole/idiomas/php/esp/propiedades_ordenadores_esp.php @@ -30,7 +30,5 @@ $TbMsg[5091]="Insertar foto"; $TbMsg[5092]="Ver fotos"; $TbMsg[495]="Fecha/Caché"; $TbMsg[4951]="Caché libre"; -// Otros mensajes. -$TbMsg['DOWNLOADS']="Descargas disponibles"; ?> |