16-Feb-2012, 02:55 PM
Hi,
Can you try these two solutions:
1.
In comments/includes/functions/page.php, line 83, replace this:
Can you try these two solutions:
1.
In comments/includes/functions/page.php, line 83, replace this:
PHP Code:
<?php
if (preg_match("/<title>(.+)<\/title>/i", $file, $match)) {
With this:
PHP Code:
<?php
if (preg_match("/<title>(.*?)<\/title>/i", $file, $match)) {