Here is my sidebar code. Any idea which line might be causing the issue ? Also my site admin button no longer appears.
<!– begin sidebar –>
<?php global $user_ID; ?>
<div id=”sidebar”>
<?php if ($user_ID) { ?>
<h2><?php _e(‘User Options’); ?></h2>
<?php } ?>
<?php if (!is_single()) { ?>
<h2><?php _e(‘Sections’); ?></h2>
<?php } ?>
<?php if (is_home() || is_author()) { ?>
<h2><?php _e(‘Members’); ?></h2>
<?php list_authors(TRUE, TRUE, FALSE, TRUE); ?>
<?php } ?>
<h2><?php echo level10bm_get_element_header(‘categories’); ?></h2>
<?php level10bm_wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0&exclude=4’); ?>
<?php if (function_exists(‘vote_poll’)): ?>
<?php endif; ?>
<?php if (!$user_ID) { ?>
<h2><?php _e(‘Login’); ?></h2>
- <form name=”loginform” id=”loginform” action=”/blog/wp-login.php” method=”post”>
<label>Username: <input type=”text” name=”log” id=”log” value=”” size=”10″ tabindex=”7″ />
</label>
<label>Password: <input type=”password” name=”pwd” id=”pwd” value=”” size=”12″ tabindex=”8″ />
</label>
<label><input name=”rememberme” type=”checkbox” id=”rememberme” value=”forever” tabindex=”9″ />
Remember me</label>
<input type=”submit” name=”submit” id=”submit” value=”Submit” tabindex=”10″ />
<input type=”hidden” name=”redirect_to” value=”/” /></form>
<?php } ?>
</div>
<!– end sidebar –>