Quote:
Originally Posted by Geoserv A lot of submissions, especially blogs, when submitted show a title similar to:
The only pertinent information there is the page title, so to clean this up do the following:
open libs/link.php and find: Code: if(preg_match("'<title>([^<]*?)</title>'", $this->html, $matches)) {
$this->url_title=trim($matches[1]);
}
change to: Code: if(preg_match("'<title>([^<]*?)</title>'", $this->html, $matches)) {
$url_title=trim($matches[1]);
$url_title = explode(":",$url_title);
$this->url_title = $url_title[1];
}
Thats it.
Geoserv |
I tried this but, now nothing shows in the title