diff --git a/e107_core/shortcodes/batch/contact_shortcodes.php b/e107_core/shortcodes/batch/contact_shortcodes.php
index fb425bff8..5589571dd 100644
--- a/e107_core/shortcodes/batch/contact_shortcodes.php
+++ b/e107_core/shortcodes/batch/contact_shortcodes.php
@@ -138,11 +138,15 @@ class contact_shortcodes extends e_shortcode
}
+ /* example {CONTACT_SUBMIT_BUTTON} */
+ /* example {CONTACT_SUBMIT_BUTTON: class=contact submit btn btn-minimal} */
function sc_contact_submit_button($parm='')
{
- return "";
+ $class = (!empty($parm['class'])) ? $parm['class'] : 'btn btn-primary button';
+
+ return "";
}
}
-?>
\ No newline at end of file
+?>