Removing 'Prague' from the page title (and other places)

Ask community to help.

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
Legolas
TestLink user
Posts: 3
Joined: Fri Mar 15, 2013 9:52 pm

Removing 'Prague' from the page title (and other places)

Post by Legolas »

Hi, is there any way to remove the 'Prague' from the page title and other places?

The reason is that we have an office in Prague, and it makes it look like this is their testlink server, while it is not. So while I realize this is the name for the 1.9 version, for us, this is a bit confusing.
GunnarD

Re: Removing 'Prague' from the page title (and other places)

Post by GunnarD »

It's defined in cfg/const.inc.php

Code: Select all

define('TL_FACE_DIR', 'prague');
define('TL_VERSION', '1.9.3 (Prague)');
Change this to

Code: Select all

define('TL_FACE_DIR', '');
define('TL_VERSION', '1.9.3');
Post Reply