|
@@ 1447-1451 (lines=5) @@
|
| 1444 |
|
|
| 1445 |
|
function bigbluebuttonbn_get_recording_data_row_meta_activity($recording, $editable) { |
| 1446 |
|
$payload = array(); |
| 1447 |
|
if ($editable) { |
| 1448 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1449 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1450 |
|
'target' => 'name'); |
| 1451 |
|
} |
| 1452 |
|
$oldsource = 'meta_contextactivity'; |
| 1453 |
|
if (isset($recording[$oldsource])) { |
| 1454 |
|
$metaname = trim($recording[$oldsource]); |
|
@@ 1468-1472 (lines=5) @@
|
| 1465 |
|
|
| 1466 |
|
function bigbluebuttonbn_get_recording_data_row_meta_description($recording, $editable) { |
| 1467 |
|
$payload = array(); |
| 1468 |
|
if ($editable) { |
| 1469 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1470 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1471 |
|
'target' => 'description'); |
| 1472 |
|
} |
| 1473 |
|
$oldsource = 'meta_contextactivitydescription'; |
| 1474 |
|
if (isset($recording[$oldsource])) { |
| 1475 |
|
$metadescription = trim($recording[$oldsource]); |