Форумы / Cotonti / Core Labs / Seo Upgrading Title Sequence

Changing the display order of the title tag

Ross
#22104 13.01.2010 20:10
I wanted my titles to be:
subject of the page -> name of the site
instead of

name of the site -> subject of the page

So I opened system/header.php and changed the following line (around line #95):

"HEADER_TITLE" => $plug_title.$out['fulltitle'],[code]

into this one:


[code]"HEADER_TITLE" => $plug_title.$out['subtitle'].' - ' .$cfg['maintitle'],

Being an absolute beginner in core coding, my question is: will I ruin anything?