Changeset 37 for trunk/Modules/Meet/Import/SalsaDance.php
- Timestamp:
- May 5, 2019, 5:17:06 PM (6 years ago)
- Location:
- trunk/Modules
- Files:
-
- 2 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Meet/Import/SalsaDance.php
r31 r37 5 5 function Import() 6 6 { 7 parent::Import();7 $Output = parent::Import(); 8 8 $Content = file_get_contents($this->URL); 9 9 $BlockStart = '<ul class="comments">'; … … 12 12 if ($Content == '') 13 13 { 14 echo('Main block not isolated.</br>');15 return ;14 $Output .= 'Main block not isolated.</br>'; 15 return $Output; 16 16 } 17 17 … … 42 42 $this->AddedCount += $MeetItem->AddIfNotExist(); 43 43 } 44 return $Output; 44 45 } 45 46 }
Note:
See TracChangeset
for help on using the changeset viewer.