diff options
author | ramon <ramongomez@us.es> | 2012-02-08 19:41:01 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2012-02-08 19:41:01 +0000 |
commit | 7e11be6cac7acf3cdc10832aa3b1fdfc64ad20b8 (patch) | |
tree | deb8d9d80ad49d50b8a1ef7716fe864a464b74c7 /admin/WebConsole/index.php | |
parent | bdf699142687163eb5bc5bf2617123ee25da7f34 (diff) |
Versión 1.0.3, #492: Corregir errata en pantalla de acceso al leer el fichero de versión.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@2542 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/index.php')
-rw-r--r-- | admin/WebConsole/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/WebConsole/index.php b/admin/WebConsole/index.php index f1b27e32..f1884e70 100644 --- a/admin/WebConsole/index.php +++ b/admin/WebConsole/index.php @@ -113,10 +113,11 @@ function PulsaEnter(oEvento){ <?php // Añadir versión y URL al proyecto. $versionfile="../doc/VERSION.txt"; -if (file_exists ($versionfile) { +if (file_exists ($versionfile)) { echo '<span><a href="http://opengnsys.es/">'; include ($versionfile); echo '</a></span>'; +} ?> <form action="#" name="lang" method="post"> <?php echo HTMLSELECT($cmd,0,'idiomas',$idi,'nemonico','descripcion',80); ?> |