Changeset 91 for Dev/trunk/classes/ApplicationDatabaseInterface.php
- Timestamp:
- 08/30/11 17:49:19 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/ApplicationDatabaseInterface.php
r88 r91 63 63 64 64 $resultApplication = $this->applicationRDFReader->readAllApplications(); 65 66 for($aNumber = 0;$aNumber<sizeof($resultApplication[0]);$aNumber++) 65 if($resultApplication[0] != false) 67 66 { 68 $aID = $resultApplication[0][$aNumber]['?uid']->label; 69 $aTitle = $resultApplication[1][$aNumber]['?title']->label; 70 $applicationInfo[$aID] = $aTitle; 71 } 67 for($aNumber = 0;$aNumber<sizeof($resultApplication[0]);$aNumber++) 68 { 69 $aID = $resultApplication[0][$aNumber]['?uid']->label; 70 $aTitle = $resultApplication[1][$aNumber]['?title']->label; 71 $applicationInfo[$aID] = $aTitle; 72 } 73 } 72 74 73 75 return $applicationInfo;
Note: See TracChangeset
for help on using the changeset viewer.