diff --git a/create_account.php b/create_account.php
index 4c1a44e16..5c12ed26e 100644
--- a/create_account.php
+++ b/create_account.php
@@ -166,6 +166,8 @@
$messageStack->add('create_account', ENTRY_PASSWORD_ERROR_NOT_MATCHING);
}
+
+ $OSCOM_Hooks->call('siteWide', 'injectFormVerify');
if ($error == false) {
$sql_data_array = array('customers_firstname' => $firstname,
@@ -502,6 +504,10 @@
?>
+
+ call('siteWide', 'injectFormDisplay');
+ ?>
diff --git a/custom.css b/custom.css
index f0783b9e9..4217f7a01 100644
--- a/custom.css
+++ b/custom.css
@@ -1,4 +1,4 @@
/* DO NOT CHANGE THIS FILE -------------------------------------------------- */
/* TO OVER-RIDE ANY ASPECT OF THIS CSS, AMEND THE user.css FILE ------------- */
-#bodyWrapper {padding-top: 10px;}.productHolder {border: 1px solid #eee;padding: 10px;border-radius: 4px;-webkit-transition: border .5s ease-in-out;-o-transition: border .5s ease-in-out;transition: border .5s ease-in-out;}.productHolder:hover {border: 1px solid #428bca;}.productHolder h2 {font-size: 1em;}.item.l-g-i {float: none; width: 100% !important; background-color: white;border: none;}.item.l-g-i img {float: left !important; margin-right: 10px !important;}.g-g-i {text-align: center;}.g-g-i, .l-g-i {margin-bottom: 15px;}.g-g-i .list-group-item-text {display: none;}.stepwizard {margin-top: 20px;}.footer {padding-top: 10px;}.footer-extra {background: #111; color: silver; line-height: 2; padding-top: 10px;}.footer-extra A {color: silver;}.form-control-feedback{padding-right:2%;}.card {margin-bottom: 10px !important;}.form-control-feedback { position: absolute; width: auto; top: 7px; right: 20px; margin-top: 0; }blockquote.blockquote p {font-size: 0.8em !important;}.jumbotron-footer {padding: 0;margin: 0;margin-top: 20px; padding-bottom: 20px;border-top: 2px solid #ddd;}.list-tap-target {line-height: 2;}.buttonSet p {margin-top: 10px;}.alert-filters {outline: 1px solid #eee;}.alert-filters A {color: #575757;}.alert-filters A:hover {color: #000;}@media (max-width: 575.98px) {.display-1 {font-size: 3rem;font-weight: 300;line-height: 1.0;}.display-2 {font-size: 2.75rem;font-weight: 300;line-height: 1.0;}.display-3 {font-size: 2.25rem;font-weight: 300;line-height: 1.0;}.display-4 {font-size: 1.75rem;font-weight: 300;line-height: 1.0;}h4 {font-size: 1rem;}}@media (max-width: 991.01px) {#columnLeft, #columnRight {padding-top: 20px;}}
+#bodyWrapper {padding-top: 10px;}.productHolder {border: 1px solid #eee;padding: 10px;border-radius: 4px;-webkit-transition: border .5s ease-in-out;-o-transition: border .5s ease-in-out;transition: border .5s ease-in-out;}.productHolder:hover {border: 1px solid #428bca;}.productHolder h2 {font-size: 1em;}.item.l-g-i {float: none; width: 100% !important; background-color: white;border: none;}.item.l-g-i img {float: left !important; margin-right: 10px !important;}.g-g-i {text-align: center;}.g-g-i, .l-g-i {margin-bottom: 15px;}.g-g-i .list-group-item-text {display: none;}.stepwizard {margin-top: 20px;}.footer {padding-top: 10px;}.footer-extra {background: #111; color: silver; line-height: 2; padding-top: 10px;}.footer-extra A {color: silver;}.card {margin-bottom: 10px !important;}.form-control-feedback { position: absolute; width: auto; top: 7px; right: 45px; margin-top: 0; }blockquote.blockquote p {font-size: 0.8em !important;}.jumbotron-footer {padding: 0;margin: 0;margin-top: 20px; padding-bottom: 20px;border-top: 2px solid #ddd;}.list-tap-target {line-height: 2;}.buttonSet p {margin-top: 10px;}.alert-filters {outline: 1px solid #eee;}.alert-filters A {color: #575757;}.alert-filters A:hover {color: #000;}@media (max-width: 575.98px) {.display-1 {font-size: 3rem;font-weight: 300;line-height: 1.0;}.display-2 {font-size: 2.75rem;font-weight: 300;line-height: 1.0;}.display-3 {font-size: 2.25rem;font-weight: 300;line-height: 1.0;}.display-4 {font-size: 1.75rem;font-weight: 300;line-height: 1.0;}h4 {font-size: 1rem;}}@media (max-width: 991.01px) {#columnLeft, #columnRight {padding-top: 20px;}}
diff --git a/includes/languages/english.php b/includes/languages/english.php
index 59c59e077..6331bd00d 100755
--- a/includes/languages/english.php
+++ b/includes/languages/english.php
@@ -226,4 +226,4 @@ function tep_date_raw($date, $reverse = false) {
define('MODULE_CONTENT_BOOTSTRAP_ROW_DESCRIPTION', '');
// noscript helper
-define('TEXT_NOSCRIPT', '
JavaScript seems to be disabled in your browser.
You must have JavaScript enabled in your browser to utilize the functionality of this website.
Click here for instructions on enabling javascript in your browser.');
+define('TEXT_NOSCRIPT', '
JavaScript seems to be disabled in your browser.
You must have JavaScript enabled in your browser to utilize the functionality of this website.
Click here for instructions on enabling javascript in your browser.
');
diff --git a/includes/modules/boxes/bm_information.php b/includes/modules/boxes/bm_information.php
index 534e6d752..67fd07103 100644
--- a/includes/modules/boxes/bm_information.php
+++ b/includes/modules/boxes/bm_information.php
@@ -35,7 +35,7 @@ function execute() {
$bm_information_links = null;
foreach (MODULE_BOXES_INFORMATION_BOX_DATA as $a => $b) {
- $bm_information_links .= '
' . $b . '' . PHP_EOL;
+ $bm_information_links .= '
' . $b . '' . PHP_EOL;
}
ob_start();
diff --git a/includes/modules/boxes/templates/tpl_bm_information.php b/includes/modules/boxes/templates/tpl_bm_information.php
index 49ecaef99..dc4d442e0 100644
--- a/includes/modules/boxes/templates/tpl_bm_information.php
+++ b/includes/modules/boxes/templates/tpl_bm_information.php
@@ -1,8 +1,8 @@
$filterlist['id'], 'text' => $filterlist['name']);
}
- $output .= tep_draw_pull_down_menu('filter_id', $options, (isset($_GET['filter_id']) ? $_GET['filter_id'] : ''), 'onchange="this.form.submit()" class="form-control input-sm"');
+ $output .= tep_draw_pull_down_menu('filter_id', $options, (isset($_GET['filter_id']) ? $_GET['filter_id'] : ''), 'onchange="this.form.submit()"');
$output .= tep_hide_session_id() . PHP_EOL;
$output .= '' . PHP_EOL;
$output .= '
' . PHP_EOL;
diff --git a/includes/modules/content/product_info/cm_pi_options_attributes.php b/includes/modules/content/product_info/cm_pi_options_attributes.php
index 6a4ba90bf..76baa0d6c 100644
--- a/includes/modules/content/product_info/cm_pi_options_attributes.php
+++ b/includes/modules/content/product_info/cm_pi_options_attributes.php
@@ -72,7 +72,7 @@ function execute() {
}
$options_output .= '