diff options
author | ramon <ramongomez@us.es> | 2017-04-26 10:48:33 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2017-04-26 10:48:33 +0000 |
commit | e2b390451539e65c9d562957ba29b7926af25ffa (patch) | |
tree | 71f024d5c8f4eb66107b27795789af9ba9a680de /admin/WebConsole/index.php | |
parent | ccec614da35b823a3b40bfb4a78805607546ab0e (diff) |
#730: Usar nombre OpenGnsys en toda la consola web; actualizar tickets cerrados.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5281 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/index.php')
-rw-r--r-- | admin/WebConsole/index.php | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/admin/WebConsole/index.php b/admin/WebConsole/index.php index 346b483a..45bf6061 100644 --- a/admin/WebConsole/index.php +++ b/admin/WebConsole/index.php @@ -37,8 +37,7 @@ if (!$cmd) die($TbMsg["ACCESS_ERROR"]); $rs=new Recordset; -// $cmd->texto="SELECT * FROM centros WHERE idcentro='$idc'"; - $cmd->texto="SELECT * FROM centros "; + $cmd->texto="SELECT * FROM centros"; $rs->Comando=&$cmd; if (!$rs->Abrir()) return(false); // Error al abrir recordset $rs->Primero(); @@ -110,13 +109,13 @@ function PulsaEnter(oEvento){ <h2> <?php echo $TbMsg["ACCESS_SUBHEAD"]; ?> </h2> <form action="controlpostacceso.php" name="fdatos" method="post"> <fieldset> - <p><label for="usu"><?php echo $TbMsg["ACCESS_USERNAME"]; ?></label> - <input name="usu" type="text" onkeypress="PulsaEnter(event)" /></p> - <p><label for="pss"><?php echo $TbMsg["ACCESS_PASSWORD"]; ?></label> - <input name="pss" type="password" onkeypress="PulsaEnter(event)" /></p> - <p><label for="idcentro"><?php echo $TbMsg["ACCESS_ORGUNIT"]; ?></label> - <?php echo HTMLSELECT($cmd,0,'centros',$idcentro,'idcentro','nombrecentro',220); ?></p> - <button type="submit" onclick="confirmar()"><?php echo $TbMsg["ACCESS_OK"]; ?></button> + <div><label for="usu"><?php echo $TbMsg["ACCESS_USERNAME"]; ?></label> + <input name="usu" type="text" onkeypress="PulsaEnter(event)" /></div> + <div><label for="pss"><?php echo $TbMsg["ACCESS_PASSWORD"]; ?></label> + <input name="pss" type="password" onkeypress="PulsaEnter(event)" /></div> + <div><label for="idcentro"><?php echo $TbMsg["ACCESS_ORGUNIT"]; ?></label> + <?php echo HTMLSELECT($cmd,0,'centros',$idcentro,'idcentro','nombrecentro',220); ?></div> + <div><button type="submit" onclick="confirmar()"><?php echo $TbMsg["ACCESS_OK"]; ?></button></div> </fieldset> </form> </div> |