Skip to content

Commit c048ed5

Browse files
author
Eugene Tupikov
committed
fix regex
1 parent 0608a8e commit c048ed5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MultipleInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private function getRowTemplate()
218218

219219
if (!empty($hiddenInputs)) {
220220
$hiddenInputs = implode("\n", $hiddenInputs);
221-
$cells[0] = preg_replace('/^(<td[^>]+>)(.*)(<\/td>)$/', '\${1}' . $hiddenInputs . '$2$3', $cells[0]);
221+
$cells[0] = preg_replace('/^(<td[^>]+>)(.*)(<\/td>)$/', '${1}' . $hiddenInputs . '$2$3', $cells[0]);
222222
}
223223

224224
$this->template = Html::tag('tr', implode("\n", $cells), [

0 commit comments

Comments
 (0)