Project

General

Profile

Actions

Bug #17031

closed

Multi-language website title

Added by John Angel over 17 years ago. Updated about 11 years ago.

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

0%

Estimated time:
TYPO3 Version:
4.1
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Website title is currently fetched from template only, preventing multi-language website title.

If 'website title' field in template is not present, we can use root page title as website title, which provides full support for multi-language website title.

Patch:

t3lib/t3lib_tstemplate.php:1209

AFTER:

$st = trim($this->setup['sitetitle']) ? $this->setup['sitetitle']:'';

INSERT CODE:

if(empty($st) && $this->rootId) {
$root_page = $GLOBALS['TSFE']->sys_page->getPage_noCheck($this->rootId);
if(sizeof($root_page)) {
$st = trim($root_page['title']);
}
}

This should be fixed for ver 4.1.

(issue imported from #M5057)


Files

5057.patch (728 Bytes) 5057.patch Administrator Admin, 2007-06-25 19:34
Actions #1

Updated by John Angel over 17 years ago

Better version, includes short navigation title:

t3lib/class.t3lib_tstemplate.php:1210

AFTER:

$st = trim($this->setup['sitetitle']) ? $this->setup['sitetitle']:'';

INSERT CODE:

if(empty($st) && $this->rootId && $GLOBALS['TSFE']->id!=$this->rootId) {
$root_page = $GLOBALS['TSFE']->sys_page->getPage_noCheck($this->rootId);
if(sizeof($root_page)) {
$st = trim($root_page['nav_title'] ? $root_page['nav_title'] : $root_page['title']);
}
}

Actions #2

Updated by Alexander Opitz over 11 years ago

  • Status changed from New to Needs Feedback
  • Target version deleted (0)
  • TYPO3 Version set to 4.1

The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?

Actions #3

Updated by Alexander Opitz about 11 years ago

  • Status changed from Needs Feedback to Closed

No feedback for over 90 days.

Actions

Also available in: Atom PDF