2 Commits

Author SHA1 Message Date
Jürgen Mummert
c995c4f93c Decode entities in pinboard text output 2026-03-04 18:58:37 +01:00
Jürgen Mummert
7c12c4ffc1 Add wood texture asset for pinboard background 2026-03-04 18:53:49 +01:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 KiB

View File

@@ -61,7 +61,7 @@ final class PinboardController extends AbstractFrontendModuleController
$notes[] = [
'id' => (int) $entry->id,
'headline' => (string) $entry->ueberschrift,
'text' => (string) $entry->text,
'text' => StringUtil::decodeEntities((string) $entry->text),
'link' => $this->resolveLink((string) $entry->link),
'dateAdded' => (int) $entry->dateAdded,
'dateModified' => (int) $entry->dateModified,