Fix: Pb register_globals=off

This commit is contained in:
Laurent Destailleur 2005-01-23 02:03:08 +00:00
parent 535e1521af
commit 9f5e68eaa6

View File

@ -1,6 +1,6 @@
<?php <?php
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -20,6 +20,12 @@
* $Source$ * $Source$
* *
*/ */
/** \file htdocs/compta/tva/fiche.php
\brief Page des règlements de TVA
\version $Revision$
*/
require("./pre.inc.php"); require("./pre.inc.php");
require("../../tva.class.php"); require("../../tva.class.php");
@ -52,22 +58,22 @@ llxHeader();
* *
*/ */
$html = new Form($db); $html = new Form($db);
if ($action == 'create') if ($_GET["action"] == 'create')
{ {
print "<form action=\"fiche.php\" method=\"post\">\n"; print "<form action=\"fiche.php\" method=\"post\">\n";
print '<input type="hidden" name="action" value="add">'; print '<input type="hidden" name="action" value="add">';
print '<div class="titre">Nouveau réglement TVA</div><br>'; print '<div class="titre">Nouveau réglement TVA</div><br>';
print '<table class="border" width="100%" cellspacing="0" cellpadding="3">'; print '<table class="border" width="100%">';
print "<tr>"; print "<tr>";
print '<td>Date de paiement</td><td>'; print '<td>'.$langs->trans("DatePayment").'</td><td>';
print $html->select_date("","datev"); print $html->select_date("","datev");
print '</td></tr>'; print '</td></tr>';
print '<td>Date de valeur</td><td>'; print '<td>'.$langs->trans("DateValue").'</td><td>';
print $html->select_date("","datep"); print $html->select_date("","datep");
print '</td></tr>'; print '</td></tr>';
print '<tr><td>Montant</td><td><input name="amount" size="10" value=""></td></tr>'; print '<tr><td>'.$langs->trans("Amount").'</td><td><input name="amount" size="10" value=""></td></tr>';
print '<tr><td>&nbsp;</td><td><input type="submit" value="'.$langs->trans("Save").'">&nbsp;'; print '<tr><td>&nbsp;</td><td><input type="submit" value="'.$langs->trans("Save").'">&nbsp;';
print '<input type="submit" name="cancel" value="'.$langs->trans("Cancel").'"></td></tr>'; print '<input type="submit" name="cancel" value="'.$langs->trans("Cancel").'"></td></tr>';
print '</table>'; print '</table>';