aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/absolutize/SPtests/bugs/pct_encoding_invalid_second_char.php
blob: 75dc2bb109b3e13f4fabb183edcf14078b82253c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class SimplePie_Absolutize_Test_Bug_Pct_Encoding_Invalid_Second_Char extends SimplePie_Absolutize_Test
{
	function data()
	{
		$this->data['base'] = 'http://a/b/c/d';
		$this->data['relative'] = 'f%0o';
	}
	
	function expected()
	{
		$this->expected = 'http://a/b/c/f%250o';
	}
}

?>