- Patch #931520 by David_Rothstein: [site:url-brief] token puts an unnecessary slash at the end.
parent
7c95deecb1
commit
d432737d8e
|
@ -1578,7 +1578,7 @@ class TokenReplaceTestCase extends DrupalWebTestCase {
|
|||
$tests['[site:slogan]'] = check_plain(variable_get('site_slogan', ''));
|
||||
$tests['[site:mail]'] = 'simpletest@example.com';
|
||||
$tests['[site:url]'] = url('<front>', $url_options);
|
||||
$tests['[site:url-brief]'] = preg_replace('!^https?://!', '', url('<front>', $url_options));
|
||||
$tests['[site:url-brief]'] = preg_replace(array('!^https?://!', '!/$!'), '', url('<front>', $url_options));
|
||||
$tests['[site:login-url]'] = url('user', $url_options);
|
||||
|
||||
// Test to make sure that we generated something for each token.
|
||||
|
|
|
@ -165,7 +165,7 @@ function system_tokens($type, $tokens, array $data = array(), array $options = a
|
|||
break;
|
||||
|
||||
case 'url-brief':
|
||||
$replacements[$original] = preg_replace('!^https?://!', '', url('<front>', $url_options));
|
||||
$replacements[$original] = preg_replace(array('!^https?://!', '!/$!'), '', url('<front>', $url_options));
|
||||
break;
|
||||
|
||||
case 'login-url':
|
||||
|
|
Loading…
Reference in New Issue