Where is the part that says controlled from - i figured it should be in footer.php (see code below) but I couldn't find the copyright statement and the part that looked like it controls "Powdered by Wordpress & Atahualpa" doesn't seem to be doing what I thought because changing it doens't change that text. I want to add something:
"Copyright © 2011 Some Random Blog - All Rights Reserved
Powered by WordPress & Atahualpa"
I thought it might be this code but it doesn't seem to be. I even tried removing or commenting that part out and it did nothing.
<div class="widget"><div class="widget-title">
<h3><?php _e('Meta','atahualpa'); ?></h3>
</div>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://wordpress.org/" title="
<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.','atahualpa'); ?>">
<?php _e('WordPress','atahualpa'); ?></a></li>
<?php wp_meta(); ?>
</ul>
</div>