From f78f8e5731630912e476c196ad6e63de7e616d23 Mon Sep 17 00:00:00 2001 From: Anne Limoges Date: Thu, 13 Mar 2014 22:51:46 +0100 Subject: [PATCH] Fix owner deletion on MLs. --- modules/lists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lists.php b/modules/lists.php index 4e15843..b11a245 100644 --- a/modules/lists.php +++ b/modules/lists.php @@ -794,7 +794,7 @@ class ListsModule extends PLModule S::assert_xsrf_token(); if ($del_owner = User::getSilent(Env::t('del_owner'))) { - $mlist->unsubscribeBulk(array($del_owner->forlifeEmail())); + $mlist->removeOwner($del_owner->forlifeEmail()); } pl_redirect('lists/admin/'.$liste); } -- 2.1.4