We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
baserCMS version : 5.1.3
ソースコード BcBaserHelper->getLinkでは、
現在SSLの場合、特定の条件でフルパスとする - //(スラッシュスラッシュ)から始まるURL - http / https 以外のプロトコル - ハッシュタグから始まるURL
等の条件でフルパスになる挙動を想定したコメントに見えるのですが、挙動としては一部反転していそうです。
検証コード:
function test($srcUrl) { $full = false; $installed = true; $ssl = true; if ($installed && ($ssl) && !(preg_match('/^(javascript|https?|ftp|tel|mailto):/', $srcUrl)) && !(strpos($srcUrl, '//') === 0) && !preg_match('/^#/', $srcUrl) ) { $full = true; } echo ($full ? '(true) ' : '(false) ') . $srcUrl."\n"; } test('./test/ab'); test('/test/ab'); test('//test/ab'); test('data-app://test/ab'); test('https://example.com'); test('javascript://void 0'); test('#/test/ab');
(true) ./test/ab (true) /test/ab (false) //test/ab (true) data-app://test/ab (false) https://example.com (false) javascript://void 0 (false) #/test/ab
The text was updated successfully, but these errors were encountered:
No branches or pull requests
概要
baserCMS version : 5.1.3
ソースコード BcBaserHelper->getLinkでは、
等の条件でフルパスになる挙動を想定したコメントに見えるのですが、挙動としては一部反転していそうです。
備考
検証コード:
The text was updated successfully, but these errors were encountered: