Skip to content

Commit 65ea988

Browse files
committed
minor symfony#10130 [FrameworkBundle] Fixed the tests (jakzal)
This PR was merged into the 2.4 branch. Discussion ---------- [FrameworkBundle] Fixed the tests | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - This template was already converted to a one liner before in b85577b, but that change was reverted when merging and solving conflicts from 2.3 branch (07de761). Commits ------- 38691da [FrameworkBundle] Merged multiple line input into one line to fix the tests.
2 parents 664d055 + 38691da commit 65ea988

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
<input
2-
type="<?php echo isset($type) ? $view->escape($type) : 'text' ?>"
3-
<?php echo $view['form']->block($form, 'widget_attributes') ?>
4-
<?php if (!empty($value) || is_numeric($value)): ?> value="<?php echo $view->escape($value) ?>"<?php endif ?>
5-
/>
1+
<input type="<?php echo isset($type) ? $view->escape($type) : 'text' ?>" <?php echo $view['form']->block($form, 'widget_attributes') ?><?php if (!empty($value) || is_numeric($value)): ?> value="<?php echo $view->escape($value) ?>"<?php endif ?> />

0 commit comments

Comments
 (0)