if ($i != 0 && $data[$i - 1]['section'] != $section) {
[$closing_tag, $is_p_closed] = $this->open_or_close_p($is_p_closed, $class, CLOSE);
$html .= $closing_tag;
+
+ // if previous iteration was diferent class close p
+ } elseif ($i != 0 && array_map('trim', explode(",", $this->str_val_or_empty($data[$i - 1], 'class'))) != $class) {
+ [$closing_tag, $is_p_closed] = $this->open_or_close_p($is_p_closed, $class, CLOSE);
+ $html .= $closing_tag;
}
$html .= $this->form_h2_title($data, $i, $section, $url, $title, $class);