Changeset 37 for trunk/Modules/Meet/Import/Facebook.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/Facebook.php
r31 r37 6 6 { 7 7 return; 8 parent::Import();8 $Output = parent::Import(); 9 9 $Content = file_get_contents($this->URL); 10 10 echo($Content); … … 15 15 if ($Content == '') 16 16 { 17 echo('Main block not isolated.</br>');18 return ;17 $Output .= 'Main block not isolated.</br>'; 18 return $Output; 19 19 } 20 20 … … 50 50 $this->AddedCount += $MeetItem->AddIfNotExist(); 51 51 } 52 return $Output; 52 53 } 53 54 }
Note:
See TracChangeset
for help on using the changeset viewer.