appdb/include version.php

WineHQ wineowner at wine.codeweavers.com
Mon Sep 25 21:09:26 CDT 2006


ChangeSet ID:	28238
CVSROOT:	/opt/cvs-commit
Module name:	appdb
Changes by:	wineowner at winehq.org	2006/09/25 21:09:26

Modified files:
	include        : version.php 

Log message:
	Chris Morgan <cmorgan at alum.wpi.edu>
	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

Patch: http://cvs.winehq.org/patch.py?id=28238

Old revision  New revision  Changes     Path
 1.81          1.82          +2 -3       appdb/include/version.php

Index: appdb/include/version.php
diff -u -p appdb/include/version.php:1.81 appdb/include/version.php:1.82
--- appdb/include/version.php:1.81	26 Sep 2006  2: 9:26 -0000
+++ appdb/include/version.php	26 Sep 2006  2: 9:26 -0000
@@ -251,9 +251,8 @@ class Version {
             $oUrl->delete($bSilent);
         }
 
-
-
-        foreach($this->aBuglinkIds as $iBug_id)
+        $aBuglinkIds = $this->get_buglink_ids();
+        foreach($aBuglinkIds as $iBug_id)
         {
             $oBug = new Bug($iBug_id);
             $oBug->delete($bSilent);



More information about the wine-cvs mailing list