Index: trunk/phase3/includes/Title.php |
— | — | @@ -867,6 +867,7 @@ |
868 | 868 | * @return \type{\string} the URL |
869 | 869 | */ |
870 | 870 | public function getLinkUrl( $query = array(), $variant = false ) { |
| 871 | + wfProfileIn( __METHOD__ ); |
871 | 872 | if( !is_array( $query ) ) { |
872 | 873 | throw new MWException( 'Title::getLinkUrl passed a non-array for '. |
873 | 874 | '$query' ); |
— | — | @@ -880,6 +881,7 @@ |
881 | 882 | return $this->getLocalURL( $query, $variant ) |
882 | 883 | . $this->getFragmentForURL(); |
883 | 884 | } |
| 885 | + wfProfileOut( __METHOD__ ); |
884 | 886 | } |
885 | 887 | |
886 | 888 | /** |