Index: archive.module
===================================================================
--- archive.module	(revision 769)
+++ archive.module	(working copy)
@@ -58,6 +58,9 @@
     'archive_block_calendar' => array(
       'arguments' => array('timestamp' => 0)
 	),
+    'archive_block_month_list' => array(
+      'arguments' => array('list_items' => array())
+	),
     'archive_page_title' => array(
       'arguments' => array('type' => '', 'year' => NULL, 'month' => NULL, 'day' => NULL)
 	),
@@ -213,7 +216,7 @@
 /**
  * Returns a list of archive months.
  */
-function theme_archive_month_list($list_items) {
+function theme_archive_block_month_list($list_items) {
 	// Sort by year then by month
 	krsort($list_items);
 	foreach ($list_items as $year => $v) {
@@ -252,7 +255,7 @@
       case 1:
     		$block = array(
           'subject' => t('Archives'),
-          'content' => theme_archive_month_list(archive_month_list()), //theme('archive_month_list', archive_month_list()),
+          'content' => theme('archive_block_month_list', archive_month_list()),
     		);
         break;
     }
