Просмотр исходного кода

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 лет назад
Родитель
Сommit
e9f879b411
1 измененных файлов с 2 добавлено и 2 удалено
  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