From: Aaron Schulz Date: Fri, 7 Jun 2013 17:42:59 +0000 (-0700) Subject: Use getPrefixedDBkey() for template profile call. X-Git-Tag: 1.31.0-rc.0~19477^2 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=913879eaef00b7598954d51973bbfbe1c42bfdd3;p=lhc%2Fweb%2Fwiklou.git Use getPrefixedDBkey() for template profile call. Change-Id: Iac5183635984aa9261c1e85e32f6bb173ec513ae --- diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 840e174d42..28cde7f09f 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -3323,7 +3323,7 @@ class Parser { if ( !$found && $title ) { if ( !Profiler::instance()->isPersistent() ) { # Too many unique items can kill profiling DBs/collectors - $titleProfileIn = __METHOD__ . "-title-" . $title->getDBkey(); + $titleProfileIn = __METHOD__ . "-title-" . $title->getPrefixedDBkey(); wfProfileIn( $titleProfileIn ); // template in } wfProfileIn( __METHOD__ . '-loadtpl' );