Skip to content
Snippets Groups Projects
Commit 03f372f3 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2418109 by yched: Misleading param name in LinkWidget::getUserEnteredStringAsUri()

parent fc63f5e0
No related branches found
No related tags found
No related merge requests found
......@@ -65,21 +65,21 @@ protected static function getUriAsDisplayableString($uri) {
*
* Schemeless URIs are treated as 'user-path:' URIs.
*
* @param string $uri
* @param string $string
* The user-entered string.
*
* @return string
* The URI, if a non-empty $uri was passed.
* The URI, if a non-empty $string was passed.
*/
protected static function getUserEnteredStringAsUri($uri) {
if (!empty($uri)) {
protected static function getUserEnteredStringAsUri($string) {
if (!empty($string)) {
// Users can enter relative URLs, but we need a valid URI, so add an
// explicit scheme when necessary.
if (parse_url($uri, PHP_URL_SCHEME) === NULL) {
$uri = 'user-path:' . $uri;
if (parse_url($string, PHP_URL_SCHEME) === NULL) {
return 'user-path:' . $string;
}
}
return $uri;
return $string;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment