mirror of
https://github.com/friendica/friendica
synced 2024-11-11 08:22:54 +00:00
Remove obsolete blockquote replacement in Item::prepareBody
This commit is contained in:
parent
c034fa7baa
commit
f5eb8e88f1
1 changed files with 0 additions and 31 deletions
|
@ -3509,37 +3509,6 @@ class Item extends BaseObject
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Look for spoiler.
|
|
||||||
$spoilersearch = '<blockquote class="spoiler">';
|
|
||||||
|
|
||||||
// Remove line breaks before the spoiler.
|
|
||||||
while ((strpos($s, "\n" . $spoilersearch) !== false)) {
|
|
||||||
$s = str_replace("\n" . $spoilersearch, $spoilersearch, $s);
|
|
||||||
}
|
|
||||||
while ((strpos($s, "<br />" . $spoilersearch) !== false)) {
|
|
||||||
$s = str_replace("<br />" . $spoilersearch, $spoilersearch, $s);
|
|
||||||
}
|
|
||||||
|
|
||||||
while ((strpos($s, $spoilersearch) !== false)) {
|
|
||||||
$pos = strpos($s, $spoilersearch);
|
|
||||||
$rnd = Strings::getRandomHex(8);
|
|
||||||
$spoilerreplace = '<br /> <span id="spoiler-wrap-' . $rnd . '" class="spoiler-wrap fakelink" onclick="openClose(\'spoiler-' . $rnd . '\');">' . L10n::t('Click to open/close') . '</span>'.
|
|
||||||
'<blockquote class="spoiler" id="spoiler-' . $rnd . '" style="display: none;">';
|
|
||||||
$s = substr($s, 0, $pos) . $spoilerreplace . substr($s, $pos + strlen($spoilersearch));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Look for quote with author.
|
|
||||||
$authorsearch = '<blockquote class="author">';
|
|
||||||
|
|
||||||
while ((strpos($s, $authorsearch) !== false)) {
|
|
||||||
$pos = strpos($s, $authorsearch);
|
|
||||||
$rnd = Strings::getRandomHex(8);
|
|
||||||
$authorreplace = '<br /> <span id="author-wrap-' . $rnd . '" class="author-wrap fakelink" onclick="openClose(\'author-' . $rnd . '\');">' . L10n::t('Click to open/close') . '</span>'.
|
|
||||||
'<blockquote class="author" id="author-' . $rnd . '" style="display: block;">';
|
|
||||||
$s = substr($s, 0, $pos) . $authorreplace . substr($s, $pos + strlen($authorsearch));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Replace friendica image url size with theme preference.
|
// Replace friendica image url size with theme preference.
|
||||||
if (!empty($a->theme_info['item_image_size'])) {
|
if (!empty($a->theme_info['item_image_size'])) {
|
||||||
$ps = $a->theme_info['item_image_size'];
|
$ps = $a->theme_info['item_image_size'];
|
||||||
|
|
Loading…
Reference in a new issue