Merge pull request #9243 from annando/preview-text
Only display redundant preview data with preview picture
This commit is contained in:
commit
b9a61e5bfb
|
@ -134,14 +134,6 @@ class PageInfo
|
|||
|
||||
$text = "[attachment type='" . $data['type'] . "'";
|
||||
|
||||
if (empty($data['text'])) {
|
||||
$data['text'] = $data['title'];
|
||||
}
|
||||
|
||||
if (empty($data['text'])) {
|
||||
$data['text'] = $data['url'];
|
||||
}
|
||||
|
||||
if (!empty($data['url'])) {
|
||||
$text .= " url='" . $data['url'] . "'";
|
||||
}
|
||||
|
@ -160,6 +152,14 @@ class PageInfo
|
|||
$text .= " image='" . $preview . "'";
|
||||
} else {
|
||||
$text .= " preview='" . $preview . "'";
|
||||
|
||||
if (empty($data['text'])) {
|
||||
$data['text'] = $data['title'];
|
||||
}
|
||||
|
||||
if (empty($data['text'])) {
|
||||
$data['text'] = $data['url'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue