Changeset 37 for trunk/Modules/Meet/Import/AstraPraha.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/AstraPraha.php
r32 r37 5 5 function Import() 6 6 { 7 parent::Import();7 $Output = parent::Import(); 8 8 $Content = file_get_contents($this->URL); 9 9 … … 13 13 if ($Content == '') 14 14 { 15 echo('Main block not isolated.</br>');16 return ;15 $Output .= 'Main block not isolated.</br>'; 16 return $Output; 17 17 } 18 18 … … 41 41 $this->AddedCount += $MeetItem->AddIfNotExist(); 42 42 } 43 return $Output; 43 44 } 44 45 }
Note:
See TracChangeset
for help on using the changeset viewer.