Hello which file exactly stores the "::" string in the title bar? Can i change it to a "-" instead?
In the file ./program/include/rcube_json_output.php
Search for 'product_name' and edit the function:
public function set_pagetitle($title)
{
$name = $this->config->get('product_name');
$this->command('set_pagetitle', JQ(empty($name) ? $title : $name.' :: '.$title));
}
Quote from: Julius Caesar;18168In the file ./program/include/rcube_json_output.php
Search for 'product_name' and edit the function:
public function set_pagetitle($title)
{
$name = $this->config->get('product_name');
$this->command('set_pagetitle', JQ(empty($name) ? $title : $name.' :: '.$title));
}
Beautiful. Thanks.
edit: hmm doesnt seem to work :(
Quote from: jaredyeo;18172edit: hmm doesnt seem to work :(
There is also another file:
./program/include/rcube_template.php
Search for
' :: '
and replace this with
' - '
as well.
And the template for composing messages uses it's own title string: ./skins/default/templates/compose.html
Quote from: Julius Caesar;18174There is also another file:
./program/include/rcube_template.php
Search for ' :: '
and replace this with ' - '
as well.
And the template for composing messages uses it's own title string: ./skins/default/templates/compose.html
Thank you Julius that's very helpful. Cheers.