0001438: Remplacement de HtmlInput par Http_Input
This commit is contained in:
parent
48c3fe5809
commit
aa55ed6894
79 changed files with 1303 additions and 878 deletions
|
|
@ -32,7 +32,7 @@ require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
|
|||
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
|
||||
require_once NOALYSS_INCLUDE.'/class/class_user.php';
|
||||
require_once NOALYSS_INCLUDE.'/lib/class_ipopup.php';
|
||||
|
||||
global $http;
|
||||
|
||||
$gDossier=dossier::id();
|
||||
$str_dossier=dossier::get();
|
||||
|
|
@ -47,7 +47,7 @@ $rap=new Acc_Report($cn);
|
|||
$menu=0;
|
||||
if (isset($_POST["del_form"]))
|
||||
{
|
||||
$rap->id=$_POST['fr_id'];
|
||||
$rap->id=$http->post("fr_id","number");
|
||||
$rap->delete();
|
||||
$menu=1;
|
||||
}
|
||||
|
|
@ -108,7 +108,7 @@ if (isset($_REQUEST["action"]) && $menu == 0)
|
|||
if ($action=="view" || $action == "record")
|
||||
{
|
||||
echo '<DIV class="content">';
|
||||
$rap->id=$_REQUEST ['fr_id'];
|
||||
$rap->id=$http->request("fr_id","number");
|
||||
echo '<form method="post" style="display:inline">';
|
||||
$rap->load();
|
||||
echo h1($rap->name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue