@@ -46,8 +46,8 @@ public function testUrlFilter($value, $expected)
4646 public function dataUrlTags ()
4747 {
4848 return array (
49- array ('[url]http://example.org[/url] ' ,'<a href="http://example.org">http://example.org</a> ' ),
50- array ('[url="http://example.com"]Example[/url] ' ,'<a href="http://example.com">Example</a> ' ),
49+ array ('[url]http://example.org[/url] ' , '<a href="http://example.org">http://example.org</a> ' ),
50+ array ('[url="http://example.com"]Example[/url] ' , '<a href="http://example.com">Example</a> ' ),
5151 );
5252 }
5353
@@ -65,8 +65,8 @@ public function testImgFilter($value, $expected)
6565 public function dataImgTags ()
6666 {
6767 return array (
68- array ('[img]http://github.com/picture.jpg[/img] ' ,'<img src="http://github.com/picture.jpg" alt="" /> ' ),
69- array ('[img width="500"]http://github.com/picture.jpg[/img] ' ,'<img width="500" src="http://github.com/picture.jpg" alt="" /> ' ),
68+ array ('[img]http://github.com/picture.jpg[/img] ' , '<img src="http://github.com/picture.jpg" alt="" /> ' ),
69+ array ('[img width="500"]http://github.com/picture.jpg[/img] ' , '<img width="500" src="http://github.com/picture.jpg" alt="" /> ' ),
7070 );
7171 }
7272
@@ -84,7 +84,7 @@ public function testQuoteFilter($value, $expected)
8484 public function dataQuoteTags ()
8585 {
8686 return array (
87- array ('[quote]text[/quote] ' ,'text ' ),
87+ array ('[quote]text[/quote] ' , 'text ' ),
8888 );
8989 }
9090
@@ -102,8 +102,8 @@ public function testStrict($value, $expected)
102102 public function dataStrict ()
103103 {
104104 return array (
105- array ('[url]http://example.org[/url] ' ,'<a href="http://example.org">http://example.org</a> ' ),
106- array ('[url=http://example.com]Example[/url] ' ,'<a href="http://example.com">Example</a> ' ),
105+ array ('[url]http://example.org[/url] ' , '<a href="http://example.org">http://example.org</a> ' ),
106+ array ('[url=http://example.com]Example[/url] ' , '<a href="http://example.com">Example</a> ' ),
107107 );
108108 }
109109
@@ -179,8 +179,8 @@ public function dataDefaultFilterSet()
179179 array ('[sub]subscript[/sub] ' , '<sub>subscript</sub> ' ),
180180 array ('[sup]superscript[/sup] ' , '<sup>superscript</sup> ' ),
181181 array ('[abbr="Object relational mapper"]ORM[/abbr] ' , '<abbr title="Object relational mapper">ORM</abbr> ' ),
182- array ('[url]http://example.org[/url] ' ,'<a href="http://example.org">http://example.org</a> ' ),
183- array ('[url="http://example.com"]Example[/url] ' ,'<a href="http://example.com">Example</a> ' ),
182+ array ('[url]http://example.org[/url] ' , '<a href="http://example.org">http://example.org</a> ' ),
183+ array ('[url="http://example.com"]Example[/url] ' , '<a href="http://example.com">Example</a> ' ),
184184 array ('[email]email@domain.com[/email] ' , '<a href="mailto:email@domain.com">email@domain.com</a> ' ),
185185 );
186186 }
0 commit comments