I need to edit someone's website. What I need to do is change the title. This sounds easy, but it's not (at least for me). This is how the relevant line looks like:
<title><?php echo Header::instance()->title; ?></title>
- What is this first part
Header::
? I've never seen that before. On the other files, I've seen:
<h1 class="title"><?php echo $serial->name; ?></h1>
That's being used to display the serial name. I wanted to use it as the title above, but it says "undefined variable: serial".
How can I change that?