GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — develop (#1814)
by
unknown
11:57
created
classes/security/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -3,18 +3,18 @@
 block discarded – undo
3 3
 class HTMLPurifier_HTMLModule_Name extends HTMLPurifier_HTMLModule
4 4
 {
5 5
 
6
-    public $name = 'Name';
6
+	public $name = 'Name';
7 7
 
8
-    public function setup($config) {
9
-        $elements = array('a', 'applet', 'form', 'frame', 'iframe', 'img', 'map');
10
-        foreach ($elements as $name) {
11
-            $element = $this->addBlankElement($name);
12
-            $element->attr['name'] = 'CDATA';
13
-            if (!$config->get('HTML.Attr.Name.UseCDATA')) {
14
-                $element->attr_transform_post['NameSync'] = new HTMLPurifier_AttrTransform_NameSync();
15
-            }
16
-        }
17
-    }
8
+	public function setup($config) {
9
+		$elements = array('a', 'applet', 'form', 'frame', 'iframe', 'img', 'map');
10
+		foreach ($elements as $name) {
11
+			$element = $this->addBlankElement($name);
12
+			$element->attr['name'] = 'CDATA';
13
+			if (!$config->get('HTML.Attr.Name.UseCDATA')) {
14
+				$element->attr_transform_post['NameSync'] = new HTMLPurifier_AttrTransform_NameSync();
15
+			}
16
+		}
17
+	}
18 18
 
19 19
 }
20 20
 
Please login to merge, or discard this patch.
classes/security/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
7 7
 class HTMLPurifier_HTMLModule_Nofollow extends HTMLPurifier_HTMLModule
8 8
 {
9 9
 
10
-    public $name = 'Nofollow';
10
+	public $name = 'Nofollow';
11 11
 
12
-    public function setup($config) {
13
-        $a = $this->addBlankElement('a');
14
-        $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow();
15
-    }
12
+	public function setup($config) {
13
+		$a = $this->addBlankElement('a');
14
+		$a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow();
15
+	}
16 16
 
17 17
 }
18 18
 
Please login to merge, or discard this patch.
htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 class HTMLPurifier_HTMLModule_NonXMLCommonAttributes extends HTMLPurifier_HTMLModule
4 4
 {
5
-    public $name = 'NonXMLCommonAttributes';
5
+	public $name = 'NonXMLCommonAttributes';
6 6
 
7
-    public $attr_collections = array(
8
-        'Lang' => array(
9
-            'lang' => 'LanguageCode',
10
-        )
11
-    );
7
+	public $attr_collections = array(
8
+		'Lang' => array(
9
+			'lang' => 'LanguageCode',
10
+		)
11
+	);
12 12
 }
13 13
 
14 14
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
classes/security/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -8,39 +8,39 @@
 block discarded – undo
8 8
 class HTMLPurifier_HTMLModule_Object extends HTMLPurifier_HTMLModule
9 9
 {
10 10
 
11
-    public $name = 'Object';
12
-    public $safe = false;
13
-
14
-    public function setup($config) {
15
-
16
-        $this->addElement('object', 'Inline', 'Optional: #PCDATA | Flow | param', 'Common',
17
-            array(
18
-                'archive' => 'URI',
19
-                'classid' => 'URI',
20
-                'codebase' => 'URI',
21
-                'codetype' => 'Text',
22
-                'data' => 'URI',
23
-                'declare' => 'Bool#declare',
24
-                'height' => 'Length',
25
-                'name' => 'CDATA',
26
-                'standby' => 'Text',
27
-                'tabindex' => 'Number',
28
-                'type' => 'ContentType',
29
-                'width' => 'Length'
30
-            )
31
-        );
32
-
33
-        $this->addElement('param', false, 'Empty', false,
34
-            array(
35
-                'id' => 'ID',
36
-                'name*' => 'Text',
37
-                'type' => 'Text',
38
-                'value' => 'Text',
39
-                'valuetype' => 'Enum#data,ref,object'
40
-           )
41
-        );
42
-
43
-    }
11
+	public $name = 'Object';
12
+	public $safe = false;
13
+
14
+	public function setup($config) {
15
+
16
+		$this->addElement('object', 'Inline', 'Optional: #PCDATA | Flow | param', 'Common',
17
+			array(
18
+				'archive' => 'URI',
19
+				'classid' => 'URI',
20
+				'codebase' => 'URI',
21
+				'codetype' => 'Text',
22
+				'data' => 'URI',
23
+				'declare' => 'Bool#declare',
24
+				'height' => 'Length',
25
+				'name' => 'CDATA',
26
+				'standby' => 'Text',
27
+				'tabindex' => 'Number',
28
+				'type' => 'ContentType',
29
+				'width' => 'Length'
30
+			)
31
+		);
32
+
33
+		$this->addElement('param', false, 'Empty', false,
34
+			array(
35
+				'id' => 'ID',
36
+				'name*' => 'Text',
37
+				'type' => 'Text',
38
+				'value' => 'Text',
39
+				'valuetype' => 'Enum#data,ref,object'
40
+		   )
41
+		);
42
+
43
+	}
44 44
 
45 45
 }
46 46
 
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php 2 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -13,23 +13,23 @@
 block discarded – undo
13 13
 class HTMLPurifier_HTMLModule_Presentation extends HTMLPurifier_HTMLModule
14 14
 {
15 15
 
16
-    public $name = 'Presentation';
16
+	public $name = 'Presentation';
17 17
 
18
-    public function setup($config) {
19
-        $this->addElement('hr',     'Block',  'Empty',  'Common');
20
-        $this->addElement('sub',    'Inline', 'Inline', 'Common');
21
-        $this->addElement('sup',    'Inline', 'Inline', 'Common');
22
-        $b = $this->addElement('b',      'Inline', 'Inline', 'Common');
23
-        $b->formatting = true;
24
-        $big = $this->addElement('big',    'Inline', 'Inline', 'Common');
25
-        $big->formatting = true;
26
-        $i = $this->addElement('i',      'Inline', 'Inline', 'Common');
27
-        $i->formatting = true;
28
-        $small = $this->addElement('small',  'Inline', 'Inline', 'Common');
29
-        $small->formatting = true;
30
-        $tt = $this->addElement('tt',     'Inline', 'Inline', 'Common');
31
-        $tt->formatting = true;
32
-    }
18
+	public function setup($config) {
19
+		$this->addElement('hr',     'Block',  'Empty',  'Common');
20
+		$this->addElement('sub',    'Inline', 'Inline', 'Common');
21
+		$this->addElement('sup',    'Inline', 'Inline', 'Common');
22
+		$b = $this->addElement('b',      'Inline', 'Inline', 'Common');
23
+		$b->formatting = true;
24
+		$big = $this->addElement('big',    'Inline', 'Inline', 'Common');
25
+		$big->formatting = true;
26
+		$i = $this->addElement('i',      'Inline', 'Inline', 'Common');
27
+		$i->formatting = true;
28
+		$small = $this->addElement('small',  'Inline', 'Inline', 'Common');
29
+		$small->formatting = true;
30
+		$tt = $this->addElement('tt',     'Inline', 'Inline', 'Common');
31
+		$tt->formatting = true;
32
+	}
33 33
 
34 34
 }
35 35
 
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,18 +16,18 @@
 block discarded – undo
16 16
     public $name = 'Presentation';
17 17
 
18 18
     public function setup($config) {
19
-        $this->addElement('hr',     'Block',  'Empty',  'Common');
20
-        $this->addElement('sub',    'Inline', 'Inline', 'Common');
21
-        $this->addElement('sup',    'Inline', 'Inline', 'Common');
22
-        $b = $this->addElement('b',      'Inline', 'Inline', 'Common');
19
+        $this->addElement('hr', 'Block', 'Empty', 'Common');
20
+        $this->addElement('sub', 'Inline', 'Inline', 'Common');
21
+        $this->addElement('sup', 'Inline', 'Inline', 'Common');
22
+        $b = $this->addElement('b', 'Inline', 'Inline', 'Common');
23 23
         $b->formatting = true;
24
-        $big = $this->addElement('big',    'Inline', 'Inline', 'Common');
24
+        $big = $this->addElement('big', 'Inline', 'Inline', 'Common');
25 25
         $big->formatting = true;
26
-        $i = $this->addElement('i',      'Inline', 'Inline', 'Common');
26
+        $i = $this->addElement('i', 'Inline', 'Inline', 'Common');
27 27
         $i->formatting = true;
28
-        $small = $this->addElement('small',  'Inline', 'Inline', 'Common');
28
+        $small = $this->addElement('small', 'Inline', 'Inline', 'Common');
29 29
         $small->formatting = true;
30
-        $tt = $this->addElement('tt',     'Inline', 'Inline', 'Common');
30
+        $tt = $this->addElement('tt', 'Inline', 'Inline', 'Common');
31 31
         $tt->formatting = true;
32 32
     }
33 33
 
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -7,26 +7,26 @@
 block discarded – undo
7 7
 class HTMLPurifier_HTMLModule_Proprietary extends HTMLPurifier_HTMLModule
8 8
 {
9 9
 
10
-    public $name = 'Proprietary';
10
+	public $name = 'Proprietary';
11 11
 
12
-    public function setup($config) {
12
+	public function setup($config) {
13 13
 
14
-        $this->addElement('marquee', 'Inline', 'Flow', 'Common',
15
-            array(
16
-                'direction' => 'Enum#left,right,up,down',
17
-                'behavior' => 'Enum#alternate',
18
-                'width' => 'Length',
19
-                'height' => 'Length',
20
-                'scrolldelay' => 'Number',
21
-                'scrollamount' => 'Number',
22
-                'loop' => 'Number',
23
-                'bgcolor' => 'Color',
24
-                'hspace' => 'Pixels',
25
-                'vspace' => 'Pixels',
26
-            )
27
-        );
14
+		$this->addElement('marquee', 'Inline', 'Flow', 'Common',
15
+			array(
16
+				'direction' => 'Enum#left,right,up,down',
17
+				'behavior' => 'Enum#alternate',
18
+				'width' => 'Length',
19
+				'height' => 'Length',
20
+				'scrolldelay' => 'Number',
21
+				'scrollamount' => 'Number',
22
+				'loop' => 'Number',
23
+				'bgcolor' => 'Color',
24
+				'hspace' => 'Pixels',
25
+				'vspace' => 'Pixels',
26
+			)
27
+		);
28 28
 
29
-    }
29
+	}
30 30
 
31 31
 }
32 32
 
Please login to merge, or discard this patch.
classes/security/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -7,20 +7,20 @@
 block discarded – undo
7 7
 class HTMLPurifier_HTMLModule_Ruby extends HTMLPurifier_HTMLModule
8 8
 {
9 9
 
10
-    public $name = 'Ruby';
10
+	public $name = 'Ruby';
11 11
 
12
-    public function setup($config) {
13
-        $this->addElement('ruby', 'Inline',
14
-            'Custom: ((rb, (rt | (rp, rt, rp))) | (rbc, rtc, rtc?))',
15
-            'Common');
16
-        $this->addElement('rbc', false, 'Required: rb', 'Common');
17
-        $this->addElement('rtc', false, 'Required: rt', 'Common');
18
-        $rb = $this->addElement('rb', false, 'Inline', 'Common');
19
-        $rb->excludes = array('ruby' => true);
20
-        $rt = $this->addElement('rt', false, 'Inline', 'Common', array('rbspan' => 'Number'));
21
-        $rt->excludes = array('ruby' => true);
22
-        $this->addElement('rp', false, 'Optional: #PCDATA', 'Common');
23
-    }
12
+	public function setup($config) {
13
+		$this->addElement('ruby', 'Inline',
14
+			'Custom: ((rb, (rt | (rp, rt, rp))) | (rbc, rtc, rtc?))',
15
+			'Common');
16
+		$this->addElement('rbc', false, 'Required: rb', 'Common');
17
+		$this->addElement('rtc', false, 'Required: rt', 'Common');
18
+		$rb = $this->addElement('rb', false, 'Inline', 'Common');
19
+		$rb->excludes = array('ruby' => true);
20
+		$rt = $this->addElement('rt', false, 'Inline', 'Common', array('rbspan' => 'Number'));
21
+		$rt->excludes = array('ruby' => true);
22
+		$this->addElement('rp', false, 'Optional: #PCDATA', 'Common');
23
+	}
24 24
 
25 25
 }
26 26
 
Please login to merge, or discard this patch.
classes/security/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -6,28 +6,28 @@
 block discarded – undo
6 6
 class HTMLPurifier_HTMLModule_SafeEmbed extends HTMLPurifier_HTMLModule
7 7
 {
8 8
 
9
-    public $name = 'SafeEmbed';
9
+	public $name = 'SafeEmbed';
10 10
 
11
-    public function setup($config) {
11
+	public function setup($config) {
12 12
 
13
-        $max = $config->get('HTML.MaxImgLength');
14
-        $embed = $this->addElement(
15
-            'embed', 'Inline', 'Empty', 'Common',
16
-            array(
17
-                'src*' => 'URI#embedded',
18
-                'type' => 'Enum#application/x-shockwave-flash',
19
-                'width' => 'Pixels#' . $max,
20
-                'height' => 'Pixels#' . $max,
21
-                'allowscriptaccess' => 'Enum#never',
22
-                'allownetworking' => 'Enum#internal',
23
-                'flashvars' => 'Text',
24
-                'wmode' => 'Enum#window,transparent,opaque',
25
-                'name' => 'ID',
26
-            )
27
-        );
28
-        $embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed();
13
+		$max = $config->get('HTML.MaxImgLength');
14
+		$embed = $this->addElement(
15
+			'embed', 'Inline', 'Empty', 'Common',
16
+			array(
17
+				'src*' => 'URI#embedded',
18
+				'type' => 'Enum#application/x-shockwave-flash',
19
+				'width' => 'Pixels#' . $max,
20
+				'height' => 'Pixels#' . $max,
21
+				'allowscriptaccess' => 'Enum#never',
22
+				'allownetworking' => 'Enum#internal',
23
+				'flashvars' => 'Text',
24
+				'wmode' => 'Enum#window,transparent,opaque',
25
+				'name' => 'ID',
26
+			)
27
+		);
28
+		$embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed();
29 29
 
30
-    }
30
+	}
31 31
 
32 32
 }
33 33
 
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -9,43 +9,43 @@
 block discarded – undo
9 9
 class HTMLPurifier_HTMLModule_SafeObject extends HTMLPurifier_HTMLModule
10 10
 {
11 11
 
12
-    public $name = 'SafeObject';
13
-
14
-    public function setup($config) {
15
-
16
-        // These definitions are not intrinsically safe: the attribute transforms
17
-        // are a vital part of ensuring safety.
18
-
19
-        $max = $config->get('HTML.MaxImgLength');
20
-        $object = $this->addElement(
21
-            'object',
22
-            'Inline',
23
-            'Optional: param | Flow | #PCDATA',
24
-            'Common',
25
-            array(
26
-                // While technically not required by the spec, we're forcing
27
-                // it to this value.
28
-                'type'   => 'Enum#application/x-shockwave-flash',
29
-                'width'  => 'Pixels#' . $max,
30
-                'height' => 'Pixels#' . $max,
31
-                'data'   => 'URI#embedded',
32
-                'codebase' => new HTMLPurifier_AttrDef_Enum(array(
33
-                    'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0')),
34
-            )
35
-        );
36
-        $object->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeObject();
37
-
38
-        $param = $this->addElement('param', false, 'Empty', false,
39
-            array(
40
-                'id' => 'ID',
41
-                'name*' => 'Text',
42
-                'value' => 'Text'
43
-            )
44
-        );
45
-        $param->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeParam();
46
-        $this->info_injector[] = 'SafeObject';
47
-
48
-    }
12
+	public $name = 'SafeObject';
13
+
14
+	public function setup($config) {
15
+
16
+		// These definitions are not intrinsically safe: the attribute transforms
17
+		// are a vital part of ensuring safety.
18
+
19
+		$max = $config->get('HTML.MaxImgLength');
20
+		$object = $this->addElement(
21
+			'object',
22
+			'Inline',
23
+			'Optional: param | Flow | #PCDATA',
24
+			'Common',
25
+			array(
26
+				// While technically not required by the spec, we're forcing
27
+				// it to this value.
28
+				'type'   => 'Enum#application/x-shockwave-flash',
29
+				'width'  => 'Pixels#' . $max,
30
+				'height' => 'Pixels#' . $max,
31
+				'data'   => 'URI#embedded',
32
+				'codebase' => new HTMLPurifier_AttrDef_Enum(array(
33
+					'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0')),
34
+			)
35
+		);
36
+		$object->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeObject();
37
+
38
+		$param = $this->addElement('param', false, 'Empty', false,
39
+			array(
40
+				'id' => 'ID',
41
+				'name*' => 'Text',
42
+				'value' => 'Text'
43
+			)
44
+		);
45
+		$param->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeParam();
46
+		$this->info_injector[] = 'SafeObject';
47
+
48
+	}
49 49
 
50 50
 }
51 51
 
Please login to merge, or discard this patch.