Feature #17030
closed
Integrate config.pageTitleSeparator
Added by John Angel over 17 years ago.
Updated about 7 years ago.
Category:
Content Rendering
Description
When using config.pageTitleFirst, the title separator ": " is not natural. Title looks like "Page: Site name".
Typo3 should use " - " separator instead, so it will look like "Page - Site name".
Here is the patch:
t3lib/class.t3lib_tstemplate.php:1216
FROM:
return $st.': '.$title;
TO:
return $st . ($titleFirst ? ' - ' : ': ') . $title;
(issue imported from #M5056)
Should be fixed for ver 4.1.
Oh, and it's still there in 4.1.1.
- Target version deleted (
0)
Still there in 4.5.6.
I think the best option would be to let it define by Typoscript:
config.pageTitleSeparator = -
Lots of config.noPageTitle = 2 configs would be obsolete then (you finally can really use the internal function).
- Tracker changed from Bug to Feature
- Subject changed from pageTitleFirst separator to Integrate config.pageTitleSeparator
- Target version set to 4.7.0
- PHP Version set to 5.3
- TYPO3 Version set to 4.6
- Status changed from New to Under Review
Documentation request is at #32320
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
- Status changed from Resolved to Closed
Also available in: Atom
PDF