From a96c64712d13de6b3f9f6aaf16be31c4d1b06ae5 Mon Sep 17 00:00:00 2001 From: bach Date: Wed, 23 Feb 2022 11:25:16 +0100 Subject: [PATCH] fixed drush script --- cleanflaglist.script | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cleanflaglist.script b/cleanflaglist.script index 3d9a876..d09baea 100755 --- a/cleanflaglist.script +++ b/cleanflaglist.script @@ -42,7 +42,7 @@ foreach ($fcfd_result as $fc) { $this->output()->writeln($flifd_query->countQuery()->execute()->fetchField() . " items for fc " . $fc->id . ' with baseflag ' . $fc->relatedflag); // $this->output()->writeln(print_r($flifd_result->fetchAssoc(), true) . " items"); - delete_flagingcollection($fc, $delete); + delete_flagingcollection($fc, $database, $delete); } @@ -65,12 +65,12 @@ foreach ($fcfd_result as $fc) { if(!$count){ $this->output()->writeln($count . " relatedflag"); $fc_missing_relatedflag ++; - delete_flagingcollection($fc, $delete); + delete_flagingcollection($fc, $database, $delete); } } $this->output()->writeln($fc_missing_relatedflag .' flagging_collection with missing related_flag'); -function delete_flagingcollection($fc, $delete){ +function delete_flagingcollection($fc, $database, $delete){ if($delete){ // $this is not working in function // $this->output()->writeln("Deleting flagging collection " . $fc->id);