View Single Post
  #2  
Old 08-30-2005, 07:57 PM
  Dongan's Avatar 
Dongan Dongan is offline
 

X-Wizard
  
Join Date: Jul 2005
Location: www.mercuryminds.com
Posts: 1,531
 

Default Re: How to have http pages show Thawte SecondTier Seal?

Quote:
Originally Posted by gravel
I used this code:

Code:
{if $smarty.server.HTTPS eq "on"} <p align="center"> {literal} <script src="https://siteseal.thawte.com/cgi/server/thawte_seal_generator.exe"> </script> {/literal} </p> {/if}

Dan

Try this...

Code:
{if $smarty.server.HTTPS eq "on" or $smarty.server.HTTP eq "on"} <p align="center"> {literal} <script src="https://siteseal.thawte.com/cgi/server/thawte_seal_generator.exe"> </script> {/literal} </p> {/if}
Reply With Quote