Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / zendframework / zend-feed / src / Writer / Entry.php
index 94f17339ad6ef1f23da49c06c40c60ce89dbbe4c..390521fe88320af5f2b3e5ff6f3d864a417afc10 100644 (file)
@@ -364,7 +364,7 @@ class Entry
      */
     public function setTitle($title)
     {
-        if (empty($title) || ! is_string($title)) {
+        if ((empty($title) && ! is_numeric($title)) || ! is_string($title)) {
             throw new Exception\InvalidArgumentException('Invalid parameter: parameter must be a non-empty string');
         }
         $this->data['title'] = $title;