Exclude prefix from title

Example: if I post a thread with prefix, the title in the browser (and when I recommend the thread on Facebook) it looks like:

"Prefix - Title of thread"

Instead, I would only see:

"Thread Title"

Is it possible to exclude prefix from title?
 
You can edit the template thread_view and change this:

Code:
<xen:title>{xen:helper threadPrefix, $thread, escaped}{$thread.title}{xen:helper pagenumber, $page}</xen:title>

to this:

Code:
<xen:title>{$thread.title}{xen:helper pagenumber, $page}</xen:title>
 
Top Bottom