summaryrefslogtreecommitdiff
path: root/smartyplugins
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2023-10-21 11:39:46 -0400
committerspiderr <spiderr@bitweaver.org>2023-10-21 11:39:46 -0400
commitee792610916faf8f3f7d9b8c156021f0a98b9f12 (patch)
tree57f34b7537bb79a0dc357e9cf01c56b0cda08a3f /smartyplugins
parent9515ecb305f338ad7c27e6a186f1b73e1c0379b9 (diff)
downloadthemes-ee792610916faf8f3f7d9b8c156021f0a98b9f12.tar.gz
themes-ee792610916faf8f3f7d9b8c156021f0a98b9f12.tar.bz2
themes-ee792610916faf8f3f7d9b8c156021f0a98b9f12.zip
add form-group to block.forminput
Diffstat (limited to 'smartyplugins')
-rw-r--r--smartyplugins/block.forminput.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/block.forminput.php b/smartyplugins/block.forminput.php
index 3a6e9d3..ea37757 100644
--- a/smartyplugins/block.forminput.php
+++ b/smartyplugins/block.forminput.php
@@ -49,7 +49,7 @@ function smarty_block_forminput($params, $content, &$gBitSmarty) {
}
if( $content ) {
- return '<div class="'.$class.'" '.$attr.' >'.$labelStart.$content.$labelEnd.'</div>';
+ return '<div class="form-group '.$class.'" '.$attr.' >'.$labelStart.$content.$labelEnd.'</div>';
}
}
?>