From 42b711ec0aba48ff6398ea7e349d042d7fa2e4c5 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Mon, 8 Apr 2013 20:30:06 +0200 Subject: [PATCH] Fix doc and deprecated warning of Title::fixUrlQueryArgs Break long line Change-Id: Iaeef8ce87c3ffd4609651f7cc0e8340a0f4bebfc --- includes/Title.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/includes/Title.php b/includes/Title.php index a40e4445c9..4fbe41e98a 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1325,8 +1325,8 @@ class Title { } /** - * Helper to fix up the get{Local,Full,Link,Canonical}URL args - * get{Canonical,Full,Link,Local}URL methods accepted an optional + * Helper to fix up the get{Canonical,Full,Link,Local,Internal}URL args + * get{Canonical,Full,Link,Local,Internal}URL methods accepted an optional * second argument named variant. This was deprecated in favor * of passing an array of option with a "variant" key * Once $query2 is removed for good, this helper can be dropped @@ -1339,7 +1339,9 @@ class Title { */ private static function fixUrlQueryArgs( $query, $query2 = false ) { if( $query2 !== false ) { - wfDeprecated( "Title::get{Canonical,Full,Link,Local} method called with a second parameter is deprecated. Add your parameter to an array passed as the first parameter.", "1.19" ); + wfDeprecated( "Title::get{Canonical,Full,Link,Local,Internal}URL " . + "method called with a second parameter is deprecated. Add your " . + "parameter to an array passed as the first parameter.", "1.19" ); } if ( is_array( $query ) ) { $query = wfArrayToCgi( $query ); @@ -1397,7 +1399,6 @@ class Title { * Get a URL with no fragment or server name. If this page is generated * with action=render, $wgServer is prepended. * - * @param string|array $query an optional query string, * not used for interwiki links. Can be specified as an associative array as well, * e.g., array( 'action' => 'edit' ) (keys and values will be URL-escaped). -- 2.20.1