From: Javier B. <jb...@us...> - 2004-11-24 07:40:15
|
Update of /cvsroot/openbash-org/openbash-org In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3649 Modified Files: index.php Log Message: Arreglado parcialmente el bug del exit(); La validación parece funcionar bien pero han salido dos sub-bugs: en ?page=admin si no estás logueado el formulario aparece dos veces y el close_session funciona mal (muestra el admin_header porque ese include viene antes en el código). Index: index.php =================================================================== RCS file: /cvsroot/openbash-org/openbash-org/index.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** index.php 15 Nov 2004 12:09:42 -0000 1.15 --- index.php 24 Nov 2004 07:40:04 -0000 1.16 *************** *** 1,3 **** --- 1,4 ---- <?php /* vim: set sts=2 ts=8 sw=2 noexpandtab: */ + session_start(); include ('config.php'); include ('modules/common.php'); |