The removal function needs access to the database
This commit is contained in:
parent
f86f2e3d76
commit
e3e9683be0
@ -87,7 +87,7 @@ while($dsondage = $sondage->FetchNextObject(false)) {
|
||||
// On inclut la routine de suppression
|
||||
$date=date('H:i:s d/m/Y');
|
||||
|
||||
if ( remove_sondage( $dsondage->id_sondage ) ) {
|
||||
if ( remove_sondage( $connect, $dsondage->id_sondage ) ) {
|
||||
|
||||
// ecriture des traces dans le fichier de logs
|
||||
error_log($date . " SUPPRESSION: $dsondage->id_sondage\t$dsondage->format\t$dsondage->nom_admin\t$dsondage->mail_admin\n", 3, 'logs_studs.txt');
|
||||
|
@ -313,9 +313,7 @@ if (isset($_POST["confirmesuppression"]) || isset($_POST["confirmesuppression_x"
|
||||
$nbuser=$user_studs->RecordCount();
|
||||
$date=date('H:i:s d/m/Y:');
|
||||
|
||||
remove_sondage( $numsondage ) ;
|
||||
|
||||
if ( remove_sondage( $numsondage ) ) {
|
||||
if ( remove_sondage( $connect, $numsondage ) ) {
|
||||
// on ecrit dans le fichier de logs la suppression du sondage
|
||||
error_log($date . " SUPPRESSION: $dsondage->id_sondage\t$dsondage->format\t$dsondage->nom_admin\t$dsondage->mail_admin\n", 3, 'admin/logs_studs.txt');
|
||||
|
||||
|
@ -203,7 +203,7 @@ function getUrlSondage($id, $admin = false)
|
||||
return $url;
|
||||
}
|
||||
|
||||
function remove_sondage( $numsondage ){
|
||||
function remove_sondage( $connect, $numsondage ){
|
||||
|
||||
$connect->StartTrans();
|
||||
|
||||
|
@ -50,7 +50,7 @@ while ($dsondage=$sondage->FetchNextObject(false)) {
|
||||
if ($date_courante > strtotime($dsondage->date_fin)) {
|
||||
//destruction des données dans la base
|
||||
|
||||
if ( remove_sondage( $dsondage->id_sondage ) ) {
|
||||
if ( remove_sondage( $connect, $dsondage->id_sondage ) ) {
|
||||
|
||||
// ecriture des traces dans le fichier de logs
|
||||
error_log($date . " SUPPRESSION: $dsondage->id_sondage\t$dsondage->format\t$dsondage->nom_admin\t$dsondage->mail_admin\n", 3, '../admin/logs_studs.txt');
|
||||
|
Loading…
Reference in New Issue
Block a user