From 0e8a01a205512d7f550431aa4e1240124af65e76 Mon Sep 17 00:00:00 2001 From: Philip Tzou Date: Sun, 25 Jul 2010 16:59:32 +0000 Subject: [PATCH] follow up r69874. use string instead of object . --- includes/parser/LinkHolderArray.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'; } } } -- 2.20.1