Skip to content

Commit

Permalink
Merge pull request #263 from beatrycze-volk/fix-call
Browse files Browse the repository at this point in the history
Remove not needed double quotes for `$config.storagePid`
  • Loading branch information
beatrycze-volk authored Dec 4, 2023
2 parents 18f6f95 + c67b435 commit a98836f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Configuration/TypoScript/Plugins/kitodo.typoscript
Original file line number Diff line number Diff line change
Expand Up @@ -206,28 +206,28 @@ plugin.tx_dlf_audioplayer {
# newspaper navigation
# --------------------------------------------------------------------------------------------------------------------

[getDocumentType("{$config.storagePid}") == "ephemera" or getDocumentType("{$config.storagePid}") == "newspaper"]
[getDocumentType({$config.storagePid}) == "ephemera" or getDocumentType({$config.storagePid}) == "newspaper"]
page.10.variables {
isNewspaper = TEXT
isNewspaper.value = newspaper_anchor
}
[END]

[getDocumentType("{$config.storagePid}") == "year"]
[getDocumentType({$config.storagePid}) == "year"]
page.10.variables {
isNewspaper = TEXT
isNewspaper.value = newspaper_year
}
[END]

[getDocumentType("{$config.storagePid}") == "issue"]
[getDocumentType({$config.storagePid}) == "issue"]
page.10.variables {
isNewspaper = TEXT
isNewspaper.value = newspaper_issue
}
[END]

[getDocumentType("{$config.storagePid}") == "object"]
[getDocumentType({$config.storagePid}) == "object"]
page.10.variables {
isObject3D = TEXT
isObject3D.value = object
Expand Down

0 comments on commit a98836f

Please sign in to comment.