|
@@ 1549-1553 (lines=5) @@
|
| 1546 |
|
*/ |
| 1547 |
|
function bigbluebuttonbn_get_recording_data_row_meta_activity($recording, $editable) { |
| 1548 |
|
$payload = array(); |
| 1549 |
|
if ($editable) { |
| 1550 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1551 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1552 |
|
'target' => 'name'); |
| 1553 |
|
} |
| 1554 |
|
$oldsource = 'meta_contextactivity'; |
| 1555 |
|
if (isset($recording[$oldsource])) { |
| 1556 |
|
$metaname = trim($recording[$oldsource]); |
|
@@ 1578-1582 (lines=5) @@
|
| 1575 |
|
*/ |
| 1576 |
|
function bigbluebuttonbn_get_recording_data_row_meta_description($recording, $editable) { |
| 1577 |
|
$payload = array(); |
| 1578 |
|
if ($editable) { |
| 1579 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1580 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1581 |
|
'target' => 'description'); |
| 1582 |
|
} |
| 1583 |
|
$oldsource = 'meta_contextactivitydescription'; |
| 1584 |
|
if (isset($recording[$oldsource])) { |
| 1585 |
|
$metadescription = trim($recording[$oldsource]); |