Skip to content
Snippets Groups Projects
Commit cb688fbc authored by enured's avatar enured
Browse files

B17224: Fixed undefined variable $rowHtml. refs #17224

parent 1b6f8aff
No related branches found
No related tags found
4 merge requests!691New version v24.3.0,!638Merge Develop to B16343,!637develop into F17086-Multiple-Forms-on-a-page,!630B17224 undefined variable row html
Pipeline #10987 failed
......@@ -2443,6 +2443,7 @@ abstract class AbstractBuildForm {
*/
private function buildSubrecordRowsHtml(array $formElement, array $rowSettings, $additionalRow = false): string {
$htmlBody = '';
$rowHtml = '';
$subrecordToken = FE_SQL1;
// Configure formElement array for additional rows.
......@@ -2452,7 +2453,6 @@ abstract class AbstractBuildForm {
}
foreach ($formElement[$subrecordToken] as $row) {
$rowHtml = '';
if ($formElement[FE_MODE] == FE_MODE_READONLY) {
$editToolTip = 'Show';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment