Community Add-Ons
| Maintainers: | kustomjs |
StartComSSL Info Box
for osCommerce Online Merchant v2.2
this works for osCommerce Online Merchant v2.2 RC 2a its for StartCom SSL info box
here is a other Update For SSL only thing changed was this:
from:<?php
/*
SSL Box
osCommerce
http://www.oscommerce.com/
Copyright (c) 2000,2001 osCommerce
Released under the GNU General Public License
*/
?>
<!-- begin SSL BOX //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left', 'text' => BOX_HEADING_SSL );
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('align' => 'center', 'text' => '<a href="http://www.startssl.com/"><img src="http://www.startssl.com/img/secured.gif" border="0" alt="Free SSL Secured By StartCom" title="Free SSL Secured By StartCom"></a>');
new infoBox($info_box_contents);
?>
</td></tr>
<!-- SSL BOX //-->
to: <?php
/*
SSL Box
osCommerce
http://www.oscommerce.com/
Copyright (c) 2000,2001 osCommerce
Released under the GNU General Public License
*/
?>
<!-- begin SSL BOX //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left', 'text' => BOX_HEADING_SSL );
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('align' => 'center', 'text' => '<script type="text/javascript" src="https://www.startssl.com/validation.js"></script>');
new infoBox($info_box_contents);
?>
</td></tr>
<!-- SSL BOX //-->
