I am getting this parse error:

Parse error: syntax error, unexpected ';', expecting ')' in /home/freemone/public_html/dofollow-blogs/compiled/arfooo_template/en/c_1_info_whatisdofollow_tpl.php on line 11

And here is the code that somehow contian the error:

<?php 
echo $this->_fetch_compile_include("includes/header.tpl", array('title' => $this->trigger_error("'lang' modifier does not exist", E_USER_NOTICE, __FILE__, __LINE__);));
 ?>"}

Can anyone see whats wrong?

I think you want this:

<?php
echo $this->_fetch_compile_include("includes/header.tpl", array('title' => $this->trigger_error("'lang' modifier does not exist", E_USER_NOTICE, __FILE__, __LINE__)));
?>

Second to last semi-colon was unnecessary.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.