Index: apachesolr.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr.module,v
retrieving revision 1.47
diff -u -p -r1.47 apachesolr.module
--- apachesolr.module	5 Dec 2010 16:20:04 -0000	1.47
+++ apachesolr.module	7 Dec 2010 16:55:44 -0000
@@ -1323,17 +1323,17 @@ function apachesolr_date_format_iso_by_g
   if ($unix !== FALSE) {
     switch ($gap) {
       case 'YEAR':
-        return format_date($unix, 'custom', 'Y', 0);
+        return format_date($unix, 'custom', 'Y');
       case 'MONTH':
-        return format_date($unix, 'custom', 'F Y', 0);
+        return format_date($unix, 'custom', 'F Y');
       case 'DAY':
-        return format_date($unix, 'custom', 'F j, Y', 0);
+        return format_date($unix, 'custom', 'F j, Y');
       case 'HOUR':
-        return format_date($unix, 'custom', 'g A', 0);
+        return format_date($unix, 'custom', 'g A');
       case 'MINUTE':
-        return format_date($unix, 'custom', 'g:i A', 0);
+        return format_date($unix, 'custom', 'g:i A');
       case 'SECOND':
-        return format_date($unix, 'custom', 'g:i:s A', 0);
+        return format_date($unix, 'custom', 'g:i:s A');
     }
   }
 
