Version::aBuglinkIds doesn't exist anymore, retrieve buglink ids with Version::get_buglink_ids() and use the returned ids
in Version::delete() in place of the class variable that no longer exists
This commit is contained in:
@@ -251,9 +251,8 @@ class Version {
|
|||||||
$oUrl->delete($bSilent);
|
$oUrl->delete($bSilent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$aBuglinkIds = $this->get_buglink_ids();
|
||||||
|
foreach($aBuglinkIds as $iBug_id)
|
||||||
foreach($this->aBuglinkIds as $iBug_id)
|
|
||||||
{
|
{
|
||||||
$oBug = new Bug($iBug_id);
|
$oBug = new Bug($iBug_id);
|
||||||
$oBug->delete($bSilent);
|
$oBug->delete($bSilent);
|
||||||
|
|||||||
Reference in New Issue
Block a user