This is my current footer.php located in ~wp-content/themes/display folder.
<?php global $k_option; ?>
</div><!-- end #top -->
</div><!-- end #wrapper -->
<div class='wrapper' id='footerwrap'>
<div id='footer'>
<div class='footer_widgets'>
<?php
###########################################################################################################
# if footer widgets are applied to "footer widget area" display them, else show predefined lists
###########################################################################################################
if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Area')) : else :
$exclude = '';
if($k_option['blog']['blog_widget_exclude'] == 1)
{
$exclude = '&exclude='.$k_option['blog']['blog_cat_final'];
}
?>
<?php
endif;
?>
</div>
<div class="box box_custom_footer">
<?php
############################################################################################
# FOOTER RIGHT BLOCK DEFINITIONS WITH FALLBACK MESSAGES IF NO DATABASE ENTRIES ARE FOUND
############################################################################################
if($k_option['footer']['button_link'] != '') $k_option['footer']['button_link'] = get_page_link($k_option['footer']['button_link']);
?>
<!-- big button -->
' class='custom_button ie6fix rounded'>
<?php echo $k_option['footer']['button1']; ?>
<span><?php echo $k_option['footer']['button2']; ?></span>
<div id='sitesearch_footer'>
<h4>Search Site</h4>
<?php get_search_form(); ?>
</div>
<!-- copyright text -->
<p><?php echo $k_option['footer']['copyright']; ?></p>
<!-- social bookmarks -->
<ul class="social_bookmarks">
<li class='rss'>">RSS
<?php
if($k_option['footer']['acc_fb'] != '')
echo "<li class='facebook'>Facebook";
if($k_option['footer']['acc_tw'] != '')
echo "<li class='twitter'>Twitter";
if($k_option['footer']['acc_fl'] != '')
echo "<li class='flickr'>flickr";
?>
</div>
</div><!--end footer-->
</div>
<?php wp_footer();
if($k_option['general']['analytics'])
echo $k_option['general']['analytics'];
?>
</body>
</html>