8000 [FrameworkBundle] Merged multiple line input into one line to fix the… · symfony/symfony@38691da · GitHub
[go: up one dir, main page]

Skip to content

Commit 38691da

Browse files
committed
[FrameworkBundle] Merged multiple line input into one line to fix the tests.
This was initially done in b85577b, but reverted when merging and solving conflicts from 2.3 branch (07de761).
1 parent 664d055 commit 38691da

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)
0