Skip to content

Commit

Permalink
[FrameworkBundle] Merged multiple line input into one line to fix the…
Browse files Browse the repository at this point in the history
… tests.

This was initially done in b85577b, but
reverted when merging and solving conflicts from 2.3 branch
(07de761).
  • Loading branch information
jakzal committed Jan 25, 2014
1 parent 664d055 commit 38691da
Showing 1 changed file with 1 addition and 5 deletions.
@@ -1,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 ?>
/>
<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 comments on commit 38691da

Please sign in to comment.