Index: wp-includes/functions.php
===================================================================
--- wp-includes/functions.php	(revision 2465)
+++ wp-includes/functions.php	(working copy)
@@ -1136,6 +1136,10 @@
 	do_action('wp_head');
 }
 
+function wp_footer() {
+	do_action('wp_footer');
+}
+
 function is_single ($post = '') {
 	global $wp_query;
 
Index: wp-content/themes/classic/footer.php
===================================================================
--- wp-content/themes/classic/footer.php	(revision 2465)
+++ wp-content/themes/classic/footer.php	(working copy)
@@ -7,6 +7,6 @@
 
 </div>
 
-<?php do_action('wp_footer'); ?>
+<?php wp_footer(); ?>
 </body>
 </html>
\ No newline at end of file
Index: wp-content/themes/default/footer.php
===================================================================
--- wp-content/themes/default/footer.php	(revision 2465)
+++ wp-content/themes/default/footer.php	(working copy)
@@ -14,7 +14,7 @@
 <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
 <?php /* "Just what do you think you're doing Dave?" */ ?>
 
-		<?php do_action('wp_footer'); ?>
+		<?php wp_footer(); ?>
 
 </body>
 </html>
\ No newline at end of file
