Skip to content

Commit b31daef

Browse files
committed
[FrameworkBundle] Merged multiple line input into one line to fix the tests.
This was initially done in b85577bb9608008ffbe92586046cbaff76c2717e, but reverted when merging and solving conflicts from 2.3 branch (07de76122b09fd5a9837222f9346b7794df000b2).
1 parent b0574ff commit b31daef

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)