diff options
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"; ?> |