| @@ -354,9 +354,9 @@ | ||
| 354 | 354 | * @param stdClass $form |
| 355 | 355 | * @return string |
| 356 | 356 | */ |
| 357 | 357 | protected function column_style( $form ) { |
| 358 | - $style_setting = $form->options['custom_style'] ?? ''; | |
| 358 | + $style_setting = isset( $form->options['custom_style'] ) ? $form->options['custom_style'] : ''; | |
| 359 | 359 | $frm_settings = FrmAppHelper::get_settings(); |
| 360 | 360 | |
| 361 | 361 | if ( $style_setting === '0' || 'none' === $frm_settings->load_style ) { |
| 362 | 362 | // Don't show a link if styling is off. |