Index: views_handler_argument_dates_various.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/node/views_handler_argument_dates_various.inc,v
retrieving revision 1.4
diff -u -r1.4 views_handler_argument_dates_various.inc
--- views_handler_argument_dates_various.inc	8 Jan 2009 00:25:19 -0000	1.4
+++ views_handler_argument_dates_various.inc	8 Sep 2010 07:47:43 -0000
@@ -19,14 +19,14 @@
    */
   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, NULL);
   }
 
   /**
    * 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, NULL);
   }
 }
 
@@ -63,14 +63,14 @@
    */
   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, NULL);
   }
 
   /**
    * 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, NULL);
   }
 }
 
@@ -101,7 +101,7 @@
    */
   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, NULL);
   }
 
   function summary_argument($data) {
@@ -129,7 +129,7 @@
    */
   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, NULL);
   }
 
   /**
@@ -137,7 +137,7 @@
    */
   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, NULL);
   }
 
   function summary_argument($data) {

