mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
8cd08620dc
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
13 lines
426 B
Plaintext
13 lines
426 B
Plaintext
--SKIPIF--
|
|
return !function_exists('hash_hmac');
|
|
--INI--
|
|
URI.Munge = "/redirect.php?url=%s&check=%t"
|
|
URI.MungeSecretKey = "foo"
|
|
--HTML--
|
|
<a href="http://localhost">foo</a>
|
|
<img src="http://localhost" alt="local" />
|
|
--EXPECT--
|
|
<a href="/redirect.php?url=http%3A%2F%2Flocalhost&check=c0efad89696082f5cb925d28636b0f4260f346391c92c70c8e9eba72591c2a73">foo</a>
|
|
<img src="http://localhost" alt="local" />
|
|
--# vim: et sw=4 sts=4
|