Update team_import.php

This commit is contained in:
lfield 2018-11-14 10:39:37 +01:00 committed by GitHub
parent f4df245f67
commit 0a8070b6ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -70,6 +70,7 @@ function parse_team($f) {
else if (strstr($s, '<type>')) $t->type = parse_element($s, '<type>');
else if (strstr($s, '<name_html>')) $t->name_html = parse_element($s, '<name_html>');
else if (strstr($s, '<description>')) {
$t->description = '';
while ($s = fgets($f)) {
if (strstr($s, '</description>')) break;
$t->description .= $s;