• The antivirus plugin for WP says that my sidebar has suspicious code. Specifically, it is citing line #3 (the TEMPLATE PATH line)…can anyone see what I need to remove from that line? Thanks!

    <div id="sidebar">
    	<div class="searchform">
    		<?php include(TEMPLATEPATH . '/searchform.php'); ?>
    	</div><!-- end .searchform -->
    
    	<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
    
    <ul>
    <li>
    		<h2><?php _e('Archives'); ?></h2>
    
    <ul><?php wp_get_archives('type=monthly'); ?></ul>
    </li>
    <li>
    <ul><?php wp_list_bookmarks(); ?></ul>
    </li>
    <li><h2><?php _e('Meta'); ?></h2>
    <ul>
    <li><?php wp_loginout(); ?></li>
    <li><a>"><?php _e(' RSS Entries'); ?></a></li>
    <li><a>"><?php _e(' Comments RSS'); ?></a></li>
    </ul>
    </li>
    </ul>
    	<?php endif; ?>
    </div><!-- end #sidebar -->
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Suspicious Code’ is closed to new replies.