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:
Chris Morgan
2006-09-26 02:09:26 +00:00
committed by WineHQ
parent 47e7ad72af
commit 57b05023ed

View File

@@ -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);