diff --git a/pandora_console/CHANGELOG b/pandora_console/CHANGELOG index f7e3704610..e39a82dd56 100644 --- a/pandora_console/CHANGELOG +++ b/pandora_console/CHANGELOG @@ -1,5 +1,9 @@ 2006-07-11 Raul Mateos + * user_edit.php: Add new text about authors. Add a line between table and button. Add different colors between rows (cosmetic changes). + + * menu.php: Add new text about authors. Add code to highlight "edit my user" when editing the user authenticated. + * index.php: Add new text about authors. * functions.php: Add new text about authors. Change PATH to noaccess.php file. diff --git a/pandora_console/godmode/usuarios/configurar_usuarios.php b/pandora_console/godmode/usuarios/configurar_usuarios.php index 0d44f6f688..a7978a632d 100644 --- a/pandora_console/godmode/usuarios/configurar_usuarios.php +++ b/pandora_console/godmode/usuarios/configurar_usuarios.php @@ -82,10 +82,10 @@ if (comprueba_login() == 0) if (dame_password($nombre_viejo)!=$password){ $password=md5($password); - $sql = "UPDATE tusuario set nombre_real ='".$nombre_real."', id_usuario ='".$nombre."', password = '".$password."', telefono ='".$telefono."', direccion ='".$direccion." ', nivel = '".$nivel."', comentarios = '".$comentarios."' WHERE id_usuario = '".$nombre_viejo."'"; + $sql = "UPDATE tusuario SET nombre_real ='".$nombre_real."', id_usuario ='".$nombre."', password = '".$password."', telefono ='".$telefono."', direccion ='".$direccion." ', nivel = '".$nivel."', comentarios = '".$comentarios."' WHERE id_usuario = '".$nombre_viejo."'"; } else - $sql = "UPDATE tusuario set nombre_real ='".$nombre_real."', id_usuario ='".$nombre."', telefono ='".$telefono."', direccion ='".$direccion." ', nivel = '".$nivel."', comentarios = '".$comentarios."' WHERE id_usuario = '".$nombre_viejo."'"; + $sql = "UPDATE tusuario SET nombre_real ='".$nombre_real."', id_usuario ='".$nombre."', telefono ='".$telefono."', direccion ='".$direccion." ', nivel = '".$nivel."', comentarios = '".$comentarios."' WHERE id_usuario = '".$nombre_viejo."'"; $resq2=mysql_query($sql); // Añadimos grupo diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 878495863e..9e720ff6e4 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -111,18 +111,18 @@ if (isset($_SESSION["id_usuario"])) { echo ""; } } - if(isset($_GET["sec2"]) && $_GET["sec2"] == "operation/users/user") { + if(isset($_GET["sec2"]) && ($_GET["sec2"] == "operation/users/user" || $_GET["sec2"] == "operation/users/user_edit" )) { echo '
'; } else echo ''; if (isset($_GET["sec"]) && $_GET["sec"] == "usuarios"){ - if(isset($_GET["sec2"]) && $_GET["sec2"] == "operation/users/user_edit"){ + if(isset($_GET["ver"]) && $_GET["ver"] == $_SESSION["id_usuario"]){ echo ""; if(isset($_GET["sec2"]) && $_GET["sec2"] == "operation/users/user_statistics") { echo "
"; diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index a3634efc63..3b185fdfd8 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -1,14 +1,25 @@ , 2003-2006 -// Raul Mateos , 2005-2006 + +// Pandora - the Free monitoring system +// ==================================== +// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com +// Copyright (c) 2005-2006 Artica Soluciones Tecnológicas S.L, info@artica.es +// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Load global vars require("include/config.php"); -//require("include/functions.php"); -//require("include/functions_db.php"); + if (comprueba_login() == 0) { $view_mode = 0; @@ -27,9 +38,7 @@ if (comprueba_login() == 0) { $rowdup=mysql_fetch_array($resq1); $nombre=$rowdup["id_usuario"]; - // Obtenemos el ID del usuario para modificar los datos del usuario actual - // no podemos pasar el ID como parámetro, sino seria muy facil acceder - // a los datos de otro usuario + // Get user ID to modify data of current user. if (isset ($_GET["modificado"])){ // Se realiza la modificación @@ -75,7 +84,7 @@ if (comprueba_login() == 0) { echo "

".$lang_label["users_"]."

"; echo "

".$lang_label["user_edit_title"]." ".$lang_label["help"]."

"; - // Sino se obtiene la variable "modificado" es que se esta visualizando la informacion y + // Si no se obtiene la variable "modificado" es que se esta visualizando la informacion y // preparandola para su modificacion, no se almacenan los datos $nombre=$rowdup["id_usuario"]; @@ -117,21 +126,30 @@ if (comprueba_login() == 0) { // Don't delete this!! if ($view_mode ==0){ echo ''; - echo ""; + echo ""; } - echo ''; - + echo '
'; + echo '

'.$lang_label["listGroupUser"].' '.$lang_label["help"].'

'; + echo ""; $sql1='SELECT * FROM tusuario_perfil WHERE id_usuario = "'.$nombre.'"'; $result=mysql_query($sql1); if (mysql_num_rows($result)){ - echo ''; + echo '"; } - + echo ""; } else { echo '

'.$lang_label["listGroupUser"].'

'; + $color=1; while ($row=mysql_fetch_array($result)){ - echo '
'; - echo "   "; + if ($color == 1){ + $tdcolor = "datos"; + $color = 0; + } + else { + $tdcolor = "datos2"; + $color = 1; + } + echo ''; echo "".dame_perfil($row["id_perfil"])." / "; - echo "".dame_grupo($row["id_grupo"]).""; + echo "".dame_grupo($row["id_grupo"])."
'.$lang_label["no_profile"]; }