View Single Post
  #2 (permalink)  
Old 06-02-2006, 05:59 AM
savant's Avatar
savant savant is offline
Constant Pligger
 
Join Date: Apr 2006
Location: UK
Posts: 1,218
Thanks: 64
Thanked 207 Times in 148 Posts
on submit.php

after this like
PHP Code:
$main_smarty->assign('Story_Content_Tags_To_Allow'htmlspecialchars(Story_Content_Tags_To_Allow)); 
add something like this
PHP Code:
$main_smarty->assign('Show_google'true); 
now in your side panel .tpl
just do
PHP Code:
{if $Show_google eq 'true'}    
   
//code
{else}
   
//code
{/if} 
Reply With Quote