Skip to content

Commit

Permalink
Update InputVar.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pbd-kn committed Mar 9, 2023
1 parent bfe221a commit a3b55f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/Modules/InputVar.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function replaceInputVars($strTag)
switch ($arrTag[0]) {
case 'get':
$this->import('Contao\Input');
$varValue = $this->Input->get($arrTag[1]);
$varValue = $arrTag[1].": ".$this->Input->get($arrTag[1]);
break;

case 'post':
Expand Down

0 comments on commit a3b55f4

Please sign in to comment.