From: x2000habouzit Date: Wed, 6 Oct 2004 13:16:49 +0000 (+0000) Subject: tiny bug with lists like e-Confiance X-Git-Tag: xorg/old~1430 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=ba073829298af8dba4aa634d29c159bfc476d7d9;p=platal.git tiny bug with lists like e-Confiance --- diff --git a/htdocs/listes/admin.php b/htdocs/listes/admin.php index bbe1ac4..86c40ad 100644 --- a/htdocs/listes/admin.php +++ b/htdocs/listes/admin.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: admin.php,v 1.3 2004-09-24 14:35:12 x2000habouzit Exp $ + $Id: admin.php,v 1.4 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; require("auto.prepend.inc.php"); new_skinned_page('listes/admin.tpl', AUTH_MDP, true); diff --git a/htdocs/listes/check.php b/htdocs/listes/check.php index 2e1fd2b..faf7f1e 100644 --- a/htdocs/listes/check.php +++ b/htdocs/listes/check.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: check.php,v 1.1 2004-09-25 09:48:06 x2000habouzit Exp $ + $Id: check.php,v 1.2 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; require("auto.prepend.inc.php"); new_admin_page('listes/check.tpl', true); diff --git a/htdocs/listes/members.php b/htdocs/listes/members.php index 6a4d62d..590144b 100644 --- a/htdocs/listes/members.php +++ b/htdocs/listes/members.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: members.php,v 1.1 2004-09-23 15:40:45 x2000habouzit Exp $ + $Id: members.php,v 1.2 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; require("auto.prepend.inc.php"); new_skinned_page('listes/members.tpl', AUTH_COOKIE, true); diff --git a/htdocs/listes/moderate.php b/htdocs/listes/moderate.php index c1a6d5d..776f50e 100644 --- a/htdocs/listes/moderate.php +++ b/htdocs/listes/moderate.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: moderate.php,v 1.5 2004-09-24 14:35:12 x2000habouzit Exp $ + $Id: moderate.php,v 1.6 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; require("auto.prepend.inc.php"); new_skinned_page('listes/moderate.tpl', AUTH_MDP, true); diff --git a/htdocs/listes/options.php b/htdocs/listes/options.php index 3377895..2dceef3 100644 --- a/htdocs/listes/options.php +++ b/htdocs/listes/options.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: options.php,v 1.1 2004-09-24 14:35:12 x2000habouzit Exp $ + $Id: options.php,v 1.2 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; require("auto.prepend.inc.php"); new_skinned_page('listes/options.tpl', AUTH_MDP, true); diff --git a/htdocs/listes/soptions.php b/htdocs/listes/soptions.php index 9e69814..62107ce 100644 --- a/htdocs/listes/soptions.php +++ b/htdocs/listes/soptions.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: soptions.php,v 1.1 2004-09-24 16:28:05 x2000habouzit Exp $ + $Id: soptions.php,v 1.2 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; require("auto.prepend.inc.php"); new_admin_page('listes/soptions.tpl', true); diff --git a/htdocs/listes/trombi.php b/htdocs/listes/trombi.php index 344551b..780cc7a 100644 --- a/htdocs/listes/trombi.php +++ b/htdocs/listes/trombi.php @@ -18,11 +18,11 @@ * Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *************************************************************************** - $Id: trombi.php,v 1.4 2004-09-23 15:40:45 x2000habouzit Exp $ + $Id: trombi.php,v 1.5 2004-10-06 13:16:49 x2000habouzit Exp $ ***************************************************************************/ if(empty($_REQUEST['liste'])) header('Location: index.php'); -$liste = strtolower($_REQUEST['liste']); +$liste = $_REQUEST['liste']; $npage = isset($_REQUEST['npage']) ? $_REQUEST['npage'] : 1; require("auto.prepend.inc.php");