jazzlee,
The following is the code that was provided by the theme:
<div class="sidebar1">
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar 1') ) : else : ?>
<li>
<h2>Pages</h2>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
</li>
<?php wp_list_categories('orderby=name&show_count=0&title_li=<h2>Categories</h2>'); ?>
<li>
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly&limit=12'); ?>
</ul>
</li>
<li>
<h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="https://themes.rock-kitty.net">Wordpress Themes</a></li>
</ul>
</li>
<li>
<h2>Blogroll</h2>
<ul>
<?php get_links(-1, '<li>', '</li>', 'between', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?>
</ul>
</li>
<?php endif; ?>
</ul>
</div>
Download the theme a second time and re-upload the “sidebar1.php” file to ensure it is not corrupt. The ending php makes me think something may have happened.