--- views/modules/node/views_handler_argument_dates_various.inc.orig	2010-02-10 17:41:19.000000000 +1000
+++ views/modules/node/views_handler_argument_dates_various.inc	2010-02-10 17:42:45.000000000 +1000
@@ -19,14 +19,14 @@ class views_handler_argument_node_create
    */
   function summary_name($data) {
     $created = $data->{$this->name_alias};
-    return format_date(strtotime($created), 'custom', $this->format, 0);
+    return format_date(strtotime($created), 'custom', $this->format);
   }
 
   /**
    * Provide a link to the next level of the view
    */
   function title() {
-    return format_date(strtotime($this->argument), 'custom', $this->format, 0);
+    return format_date(strtotime($this->argument), 'custom', $this->format);
   }
 }
 
@@ -63,14 +63,14 @@ class views_handler_argument_node_create
    */
   function summary_name($data) {
     $created = $data->{$this->name_alias};
-    return format_date(strtotime($created . "15"), 'custom', $this->format, 0);
+    return format_date(strtotime($created . "15"), 'custom', $this->format);
   }
 
   /**
    * Provide a link to the next level of the view
    */
   function title() {
-    return format_date(strtotime($this->argument . "15"), 'custom', $this->format, 0);
+    return format_date(strtotime($this->argument . "15"), 'custom', $this->format);
   }
 }
 
@@ -101,7 +101,7 @@ class views_handler_argument_node_create
    */
   function title() {
     $month = str_pad($this->argument, 2, '0', STR_PAD_LEFT);
-    return format_date(strtotime("2005" . $month . "15"), 'custom', $this->format, 0);
+    return format_date(strtotime("2005" . $month . "15"), 'custom', $this->format);
   }
 
   function summary_argument($data) {
@@ -129,7 +129,7 @@ class views_handler_argument_node_create
    */
   function summary_name($data) {
     $day = str_pad($data->{$this->name_alias}, 2, '0', STR_PAD_LEFT);
-    return format_date(strtotime("2005" . "05" . $day), 'custom', $this->format, 0);
+    return format_date(strtotime("2005" . "05" . $day), 'custom', $this->format);
   }
 
   /**
@@ -137,7 +137,7 @@ class views_handler_argument_node_create
    */
   function title() {
     $day = str_pad($this->argument, 2, '0', STR_PAD_LEFT);
-    return format_date(strtotime("2005" . "05" . $day), 'custom', $this->format, 0);
+    return format_date(strtotime("2005" . "05" . $day), 'custom', $this->format);
   }
 
   function summary_argument($data) {
