diff options
| author | spiderr <spider@viovio.com> | 2011-02-15 00:56:12 -0500 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2011-02-15 00:56:12 -0500 |
| commit | e35c374493612c36f32e3227d33f0e8d870d7c42 (patch) | |
| tree | 98e43f9b84e910e5873089988cbf62de4621f060 /smartyplugins/block.form.php | |
| parent | 1a306da147abb7ecca921ba57e6743ad54ab450e (diff) | |
| download | themes-e35c374493612c36f32e3227d33f0e8d870d7c42.tar.gz themes-e35c374493612c36f32e3227d33f0e8d870d7c42.tar.bz2 themes-e35c374493612c36f32e3227d33f0e8d870d7c42.zip | |
comment div class='clear' as it ironically causes rendering issues. orphaned tags to force break considered harmful.
Diffstat (limited to 'smartyplugins/block.form.php')
| -rw-r--r-- | smartyplugins/block.form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/block.form.php b/smartyplugins/block.form.php index d5f605d..5c1aeb0 100644 --- a/smartyplugins/block.form.php +++ b/smartyplugins/block.form.php @@ -98,7 +98,7 @@ function smarty_block_form( $pParams, $pContent, &$gBitSmarty) { $ret = '<form action="'.$url.( !empty( $pParams['ianchor'] ) ? '#'.$pParams['ianchor'] : '' ).'" '.$atts.$onsub.'>'; $ret .= isset( $legend ) ? '<fieldset>'.$legend : '<div>'; // adding the div makes it easier to be xhtml compliant $ret .= $pContent; - $ret .= '<div class="clear"></div>'; // needed to avoid rendering issues +// $ret .= '<div class="clear"></div>'; // needed to avoid rendering issues $ret .= isset( $legend ) ? '</fieldset>' : '</div>'; // close the open tags $ret .= '</form>'; return $ret; |
