Changeset 91 for Dev/trunk/classes/SurveyRDFReader.php
- Timestamp:
- 08/30/11 17:49:19 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/SurveyRDFReader.php
r82 r91 20 20 public function loadSurvey() 21 21 { 22 $this->model->load($this->filePath); 22 if(file_exists($this->filePath)) 23 { 24 $this->model->load($this->filePath); 25 return true; 26 } 27 else 28 { 29 return false; 30 } 23 31 } 24 32
Note: See TracChangeset
for help on using the changeset viewer.