|
@@ 1156-1160 (lines=5) @@
|
| 1153 |
|
|
| 1154 |
|
function bigbluebuttonbn_get_recording_data_row_meta_activity($recording, $editable) { |
| 1155 |
|
$payload = array(); |
| 1156 |
|
if ($editable) { |
| 1157 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1158 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1159 |
|
'target' => 'name'); |
| 1160 |
|
} |
| 1161 |
|
$oldsource = 'meta_contextactivity'; |
| 1162 |
|
if (isset($recording[$oldsource])) { |
| 1163 |
|
$metaname = trim($recording[$oldsource]); |
|
@@ 1177-1181 (lines=5) @@
|
| 1174 |
|
|
| 1175 |
|
function bigbluebuttonbn_get_recording_data_row_meta_description($recording, $editable) { |
| 1176 |
|
$payload = array(); |
| 1177 |
|
if ($editable) { |
| 1178 |
|
$payload = array('recordingid' => $recording['recordID'], 'meetingid' => $recording['meetingID'], |
| 1179 |
|
'action' => 'edit', 'tag' => 'edit', |
| 1180 |
|
'target' => 'description'); |
| 1181 |
|
} |
| 1182 |
|
$oldsource = 'meta_contextactivitydescription'; |
| 1183 |
|
if (isset($recording[$oldsource])) { |
| 1184 |
|
$metadescription = trim($recording[$oldsource]); |