Răsfoiți Sursa

Fallback to GUID when entry title is empty (#2813)

When entries have an empty title, our UI was a bit broken. In this
(rare) case, we revert to GUID, which is always non-empty.
Alexandre Alapetite 6 ani în urmă
părinte
comite
e9f879b411
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      app/Models/Entry.php

+ 2 - 2
app/Models/Entry.php

@@ -43,7 +43,7 @@ class FreshRSS_Entry extends Minz_Model {
 		return $this->guid;
 	}
 	public function title() {
-		return $this->title;
+		return $this->title == '' ? $this->guid() : $this->title;
 	}
 	public function author() {
 		//Deprecated
@@ -139,7 +139,7 @@ class FreshRSS_Entry extends Minz_Model {
 	}
 	public function _title($value) {
 		$this->hash = null;
-		$this->title = $value;
+		$this->title = trim($value);
 	}
 	public function _author($value) {
 		//Deprecated