Security update for Core, with self-updated composer
[yaffs-website] / web / core / lib / Drupal / Core / Datetime / DrupalDateTime.php
index 572a6e3c6620910781b18fcbf02423d0e05ed2df..bb7b821bc30d05c3be2a6c99061781f44182a1d8 100644 (file)
@@ -34,7 +34,11 @@ class DrupalDateTime extends DateTimePlus {
    *   A date/input_time_adjusted string. Defaults to 'now'.
    * @param mixed $timezone
    *   PHP DateTimeZone object, string or NULL allowed.
-   *   Defaults to NULL.
+   *   Defaults to NULL. Note that the $timezone parameter and the current
+   *   timezone are ignored when the $time parameter either is a UNIX timestamp
+   *   (e.g. @946684800) or specifies a timezone
+   *   (e.g. 2010-01-28T15:00:00+02:00).
+   *   @see http://php.net/manual/en/datetime.construct.php
    * @param array $settings
    *   - validate_format: (optional) Boolean choice to validate the
    *     created date using the input format. The format used in
@@ -104,7 +108,7 @@ class DrupalDateTime extends DateTimePlus {
       $format = parent::format($format, $settings);
 
       // Translates a formatted date string.
-      $translation_callback = function($matches) use ($langcode) {
+      $translation_callback = function ($matches) use ($langcode) {
         $code = $matches[1];
         $string = $matches[2];
         if (!isset($this->formatTranslationCache[$langcode][$code][$string])) {