composer update
This commit is contained in:
parent
f6abc3dce2
commit
71dfaca858
1753 changed files with 45274 additions and 14619 deletions
|
|
@ -289,13 +289,16 @@ function webform_preprocess_table(&$variables) {
|
|||
foreach ($variables['rows'] as &$row) {
|
||||
// Check first cell.
|
||||
if (!isset($row['cells'][0]['content'])
|
||||
|| !is_array($row['cells'][0]['content'])
|
||||
|| !isset($row['cells'][0]['content']['#markup'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Check last cell edit link.
|
||||
if (!isset($row['cells'][1]['content'])
|
||||
|| !is_array($row['cells'][1]['content'])
|
||||
|| !isset($row['cells'][1]['content']['#links'])
|
||||
|| !is_array($row['cells'][1]['content']['#links'])
|
||||
|| !isset($row['cells'][1]['content']['#links']['edit'])) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue