The advise given is correct, except I would never rely on a plugin to do a basic task. I would use a Child Theme and hook into admin_footer_text.
function remove_footer_admin () {
echo 'Your custom footer HTML here';
}
add_filter('admin_footer_text', 'remove_footer_admin');
]]>