|
@@ 1179-1183 (lines=5) @@
|
| 1176 |
|
|
| 1177 |
|
function bigbluebuttonbn_get_recording_data_row_meta_activity($recording, $editable) { |
| 1178 |
|
$payload = array(); |
| 1179 |
|
if ($editable) { |
| 1180 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1181 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1182 |
|
'target' => 'name'); |
| 1183 |
|
} |
| 1184 |
|
$oldsource = 'meta_contextactivity'; |
| 1185 |
|
if (isset($recording[$oldsource])) { |
| 1186 |
|
$metaname = trim($recording[$oldsource]); |
|
@@ 1200-1204 (lines=5) @@
|
| 1197 |
|
|
| 1198 |
|
function bigbluebuttonbn_get_recording_data_row_meta_description($recording, $editable) { |
| 1199 |
|
$payload = array(); |
| 1200 |
|
if ($editable) { |
| 1201 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1202 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1203 |
|
'target' => 'description'); |
| 1204 |
|
} |
| 1205 |
|
$oldsource = 'meta_contextactivitydescription'; |
| 1206 |
|
if (isset($recording[$oldsource])) { |
| 1207 |
|
$metadescription = trim($recording[$oldsource]); |