From: Philip Tzou Date: Sun, 25 Jul 2010 16:59:32 +0000 (+0000) Subject: follow up r69874. use string instead of object . X-Git-Tag: 1.31.0-rc.0~35953 X-Git-Url: http://git.cyclocoop.org/%22.%24redirect_annul.%22?a=commitdiff_plain;h=0e8a01a205512d7f550431aa4e1240124af65e76;p=lhc%2Fweb%2Fwiklou.git follow up r69874. use string instead of object . --- diff --git a/includes/parser/LinkHolderArray.php b/includes/parser/LinkHolderArray.php index b04eb6993f..175bb58d7d 100644 --- a/includes/parser/LinkHolderArray.php +++ b/includes/parser/LinkHolderArray.php @@ -316,7 +316,7 @@ class LinkHolderArray { ); // separate titles with \0 because it would never appears // in a valid title - $titlesToBeConverted .= $title . '\0'; + $titlesToBeConverted .= $titleText . '\0'; } } }