|
@@ 1592-1595 (lines=4) @@
|
| 1589 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, $metaname, $oldsource, $payload); |
| 1590 |
|
} |
| 1591 |
|
$newsource = 'meta_bbb-recording-name'; |
| 1592 |
|
if (isset($recording[$newsource])) { |
| 1593 |
|
$metaname = trim($recording[$newsource]); |
| 1594 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, $metaname, $newsource, $payload); |
| 1595 |
|
} |
| 1596 |
|
$metaname = trim($recording['meetingName']); |
| 1597 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, $metaname, $newsource, $payload); |
| 1598 |
|
} |
|
@@ 1616-1619 (lines=4) @@
|
| 1613 |
|
'target' => 'description'); |
| 1614 |
|
} |
| 1615 |
|
$oldsource = 'meta_contextactivitydescription'; |
| 1616 |
|
if (isset($recording[$oldsource])) { |
| 1617 |
|
$metadescription = trim($recording[$oldsource]); |
| 1618 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, $metadescription, $oldsource, $payload); |
| 1619 |
|
} |
| 1620 |
|
$newsource = 'meta_bbb-recording-description'; |
| 1621 |
|
if (isset($recording[$newsource])) { |
| 1622 |
|
$metadescription = trim($recording[$newsource]); |
|
@@ 1621-1624 (lines=4) @@
|
| 1618 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, $metadescription, $oldsource, $payload); |
| 1619 |
|
} |
| 1620 |
|
$newsource = 'meta_bbb-recording-description'; |
| 1621 |
|
if (isset($recording[$newsource])) { |
| 1622 |
|
$metadescription = trim($recording[$newsource]); |
| 1623 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, $metadescription, $newsource, $payload); |
| 1624 |
|
} |
| 1625 |
|
return bigbluebuttonbn_get_recording_data_row_text($recording, '', $newsource, $payload); |
| 1626 |
|
} |
| 1627 |
|
|