Project

General

Profile

Actions

Feature #17030

closed

Integrate config.pageTitleSeparator

Added by John Angel over 17 years ago. Updated almost 7 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Content Rendering
Target version:
Start date:
2007-02-23
Due date:
% Done:

100%

Estimated time:
PHP Version:
5.3
Tags:
Complexity:
easy
Sprint Focus:

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)


Related issues 1 (0 open1 closed)

Has duplicate TYPO3 Core - Feature #31319: pageTitle separator configurableClosedChris topher2011-10-26

Actions
Actions

Also available in: Atom PDF