Add more php5 scope keywords to class methods.

This commit is contained in:
Chris Morgan
2007-09-24 21:11:29 -04:00
parent fb20a7b546
commit fafcbce1bd
3 changed files with 87 additions and 94 deletions

View File

@@ -60,18 +60,10 @@ class queuedEntries
//TODO: would like to rely on the constructor but we might be a user with 'admin'
// privileges and that would mean we would end up retrieved queued versions for
// this application or unqueued versions depending on which user we were
$hResult = $oApp->_internal_retrieve_all_versions();
$aVersions = $oApp->getVersions();
while($oVersionRow = query_fetch_object($hResult))
foreach($aVersions as $oVersion)
{
if($bDebugOutputEnabled)
{
echo "oVersionRow is: ";
print_r($oVersionRow);
}
$oVersion = new Version($oVersionRow->versionId);
if($bDebugOutputEnabled)
{
echo "Processing version: ";