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
Push — master ( b119a5...2262ef )
by gyeong-won
19:32 queued 13:26
created
security/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,19 +8,19 @@
 block discarded – undo
8 8
 class HTMLPurifier_AttrTransform_NameSync extends HTMLPurifier_AttrTransform
9 9
 {
10 10
 
11
-    public function __construct() {
12
-        $this->idDef = new HTMLPurifier_AttrDef_HTML_ID();
13
-    }
11
+	public function __construct() {
12
+		$this->idDef = new HTMLPurifier_AttrDef_HTML_ID();
13
+	}
14 14
 
15
-    public function transform($attr, $config, $context) {
16
-        if (!isset($attr['name'])) return $attr;
17
-        $name = $attr['name'];
18
-        if (isset($attr['id']) && $attr['id'] === $name) return $attr;
19
-        $result = $this->idDef->validate($name, $config, $context);
20
-        if ($result === false) unset($attr['name']);
21
-        else $attr['name'] = $result;
22
-        return $attr;
23
-    }
15
+	public function transform($attr, $config, $context) {
16
+		if (!isset($attr['name'])) return $attr;
17
+		$name = $attr['name'];
18
+		if (isset($attr['id']) && $attr['id'] === $name) return $attr;
19
+		$result = $this->idDef->validate($name, $config, $context);
20
+		if ($result === false) unset($attr['name']);
21
+		else $attr['name'] = $result;
22
+		return $attr;
23
+	}
24 24
 
25 25
 }
26 26
 
Please login to merge, or discard this patch.
Braces   +11 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,12 +13,19 @@
 block discarded – undo
13 13
     }
14 14
 
15 15
     public function transform($attr, $config, $context) {
16
-        if (!isset($attr['name'])) return $attr;
16
+        if (!isset($attr['name'])) {
17
+        	return $attr;
18
+        }
17 19
         $name = $attr['name'];
18
-        if (isset($attr['id']) && $attr['id'] === $name) return $attr;
20
+        if (isset($attr['id']) && $attr['id'] === $name) {
21
+        	return $attr;
22
+        }
19 23
         $result = $this->idDef->validate($name, $config, $context);
20
-        if ($result === false) unset($attr['name']);
21
-        else $attr['name'] = $result;
24
+        if ($result === false) {
25
+        	unset($attr['name']);
26
+        } else {
27
+        	$attr['name'] = $result;
28
+        }
22 29
         return $attr;
23 30
     }
24 31
 
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -8,37 +8,37 @@
 block discarded – undo
8 8
  */
9 9
 class HTMLPurifier_AttrTransform_Nofollow extends HTMLPurifier_AttrTransform
10 10
 {
11
-    private $parser;
11
+	private $parser;
12 12
 
13
-    public function __construct() {
14
-        $this->parser = new HTMLPurifier_URIParser();
15
-    }
13
+	public function __construct() {
14
+		$this->parser = new HTMLPurifier_URIParser();
15
+	}
16 16
 
17
-    public function transform($attr, $config, $context) {
17
+	public function transform($attr, $config, $context) {
18 18
 
19
-        if (!isset($attr['href'])) {
20
-            return $attr;
21
-        }
19
+		if (!isset($attr['href'])) {
20
+			return $attr;
21
+		}
22 22
 
23
-        // XXX Kind of inefficient
24
-        $url = $this->parser->parse($attr['href']);
25
-        $scheme = $url->getSchemeObj($config, $context);
23
+		// XXX Kind of inefficient
24
+		$url = $this->parser->parse($attr['href']);
25
+		$scheme = $url->getSchemeObj($config, $context);
26 26
 
27
-        if ($scheme->browsable && !$url->isLocal($config, $context)) {
28
-            if (isset($attr['rel'])) {
29
-                $rels = explode(' ', $attr);
30
-                if (!in_array('nofollow', $rels)) {
31
-                    $rels[] = 'nofollow';
32
-                }
33
-                $attr['rel'] = implode(' ', $rels);
34
-            } else {
35
-                $attr['rel'] = 'nofollow';
36
-            }
37
-        }
27
+		if ($scheme->browsable && !$url->isLocal($config, $context)) {
28
+			if (isset($attr['rel'])) {
29
+				$rels = explode(' ', $attr);
30
+				if (!in_array('nofollow', $rels)) {
31
+					$rels[] = 'nofollow';
32
+				}
33
+				$attr['rel'] = implode(' ', $rels);
34
+			} else {
35
+				$attr['rel'] = 'nofollow';
36
+			}
37
+		}
38 38
 
39
-        return $attr;
39
+		return $attr;
40 40
 
41
-    }
41
+	}
42 42
 
43 43
 }
44 44
 
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 class HTMLPurifier_AttrTransform_SafeEmbed extends HTMLPurifier_AttrTransform
4 4
 {
5
-    public $name = "SafeEmbed";
5
+	public $name = "SafeEmbed";
6 6
 
7
-    public function transform($attr, $config, $context) {
8
-        $attr['allowscriptaccess'] = 'never';
9
-        $attr['allownetworking'] = 'internal';
10
-        $attr['type'] = 'application/x-shockwave-flash';
11
-        return $attr;
12
-    }
7
+	public function transform($attr, $config, $context) {
8
+		$attr['allowscriptaccess'] = 'never';
9
+		$attr['allownetworking'] = 'internal';
10
+		$attr['type'] = 'application/x-shockwave-flash';
11
+		return $attr;
12
+	}
13 13
 }
14 14
 
15 15
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeObject.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,12 +5,12 @@
 block discarded – undo
5 5
  */
6 6
 class HTMLPurifier_AttrTransform_SafeObject extends HTMLPurifier_AttrTransform
7 7
 {
8
-    public $name = "SafeObject";
8
+	public $name = "SafeObject";
9 9
 
10
-    function transform($attr, $config, $context) {
11
-        if (!isset($attr['type'])) $attr['type'] = 'application/x-shockwave-flash';
12
-        return $attr;
13
-    }
10
+	function transform($attr, $config, $context) {
11
+		if (!isset($attr['type'])) $attr['type'] = 'application/x-shockwave-flash';
12
+		return $attr;
13
+	}
14 14
 }
15 15
 
16 16
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,9 @@
 block discarded – undo
8 8
     public $name = "SafeObject";
9 9
 
10 10
     function transform($attr, $config, $context) {
11
-        if (!isset($attr['type'])) $attr['type'] = 'application/x-shockwave-flash';
11
+        if (!isset($attr['type'])) {
12
+        	$attr['type'] = 'application/x-shockwave-flash';
13
+        }
12 14
         return $attr;
13 15
     }
14 16
 }
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeParam.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -14,51 +14,51 @@
 block discarded – undo
14 14
  */
15 15
 class HTMLPurifier_AttrTransform_SafeParam extends HTMLPurifier_AttrTransform
16 16
 {
17
-    public $name = "SafeParam";
18
-    private $uri;
17
+	public $name = "SafeParam";
18
+	private $uri;
19 19
 
20
-    public function __construct() {
21
-        $this->uri = new HTMLPurifier_AttrDef_URI(true); // embedded
22
-        $this->wmode = new HTMLPurifier_AttrDef_Enum(array('window', 'opaque', 'transparent'));
23
-    }
20
+	public function __construct() {
21
+		$this->uri = new HTMLPurifier_AttrDef_URI(true); // embedded
22
+		$this->wmode = new HTMLPurifier_AttrDef_Enum(array('window', 'opaque', 'transparent'));
23
+	}
24 24
 
25
-    public function transform($attr, $config, $context) {
26
-        // If we add support for other objects, we'll need to alter the
27
-        // transforms.
28
-        switch ($attr['name']) {
29
-            // application/x-shockwave-flash
30
-            // Keep this synchronized with Injector/SafeObject.php
31
-            case 'allowScriptAccess':
32
-                $attr['value'] = 'never';
33
-                break;
34
-            case 'allowNetworking':
35
-                $attr['value'] = 'internal';
36
-                break;
37
-            case 'allowFullScreen':
38
-                if ($config->get('HTML.FlashAllowFullScreen')) {
39
-                    $attr['value'] = ($attr['value'] == 'true') ? 'true' : 'false';
40
-                } else {
41
-                    $attr['value'] = 'false';
42
-                }
43
-                break;
44
-            case 'wmode':
45
-                $attr['value'] = $this->wmode->validate($attr['value'], $config, $context);
46
-                break;
47
-            case 'movie':
48
-            case 'src':
49
-                $attr['name'] = "movie";
50
-                $attr['value'] = $this->uri->validate($attr['value'], $config, $context);
51
-                break;
52
-            case 'flashvars':
53
-                // we're going to allow arbitrary inputs to the SWF, on
54
-                // the reasoning that it could only hack the SWF, not us.
55
-                break;
56
-            // add other cases to support other param name/value pairs
57
-            default:
58
-                $attr['name'] = $attr['value'] = null;
59
-        }
60
-        return $attr;
61
-    }
25
+	public function transform($attr, $config, $context) {
26
+		// If we add support for other objects, we'll need to alter the
27
+		// transforms.
28
+		switch ($attr['name']) {
29
+			// application/x-shockwave-flash
30
+			// Keep this synchronized with Injector/SafeObject.php
31
+			case 'allowScriptAccess':
32
+				$attr['value'] = 'never';
33
+				break;
34
+			case 'allowNetworking':
35
+				$attr['value'] = 'internal';
36
+				break;
37
+			case 'allowFullScreen':
38
+				if ($config->get('HTML.FlashAllowFullScreen')) {
39
+					$attr['value'] = ($attr['value'] == 'true') ? 'true' : 'false';
40
+				} else {
41
+					$attr['value'] = 'false';
42
+				}
43
+				break;
44
+			case 'wmode':
45
+				$attr['value'] = $this->wmode->validate($attr['value'], $config, $context);
46
+				break;
47
+			case 'movie':
48
+			case 'src':
49
+				$attr['name'] = "movie";
50
+				$attr['value'] = $this->uri->validate($attr['value'], $config, $context);
51
+				break;
52
+			case 'flashvars':
53
+				// we're going to allow arbitrary inputs to the SWF, on
54
+				// the reasoning that it could only hack the SWF, not us.
55
+				break;
56
+			// add other cases to support other param name/value pairs
57
+			default:
58
+				$attr['name'] = $attr['value'] = null;
59
+		}
60
+		return $attr;
61
+	}
62 62
 }
63 63
 
64 64
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -5,12 +5,12 @@
 block discarded – undo
5 5
  */
6 6
 class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform
7 7
 {
8
-    public function transform($attr, $config, $context) {
9
-        if (!isset($attr['type'])) {
10
-            $attr['type'] = 'text/javascript';
11
-        }
12
-        return $attr;
13
-    }
8
+	public function transform($attr, $config, $context) {
9
+		if (!isset($attr['type'])) {
10
+			$attr['type'] = 'text/javascript';
11
+		}
12
+		return $attr;
13
+	}
14 14
 }
15 15
 
16 16
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -9,29 +9,29 @@
 block discarded – undo
9 9
  */
10 10
 class HTMLPurifier_AttrTransform_TargetBlank extends HTMLPurifier_AttrTransform
11 11
 {
12
-    private $parser;
12
+	private $parser;
13 13
 
14
-    public function __construct() {
15
-        $this->parser = new HTMLPurifier_URIParser();
16
-    }
14
+	public function __construct() {
15
+		$this->parser = new HTMLPurifier_URIParser();
16
+	}
17 17
 
18
-    public function transform($attr, $config, $context) {
18
+	public function transform($attr, $config, $context) {
19 19
 
20
-        if (!isset($attr['href'])) {
21
-            return $attr;
22
-        }
20
+		if (!isset($attr['href'])) {
21
+			return $attr;
22
+		}
23 23
 
24
-        // XXX Kind of inefficient
25
-        $url = $this->parser->parse($attr['href']);
26
-        $scheme = $url->getSchemeObj($config, $context);
24
+		// XXX Kind of inefficient
25
+		$url = $this->parser->parse($attr['href']);
26
+		$scheme = $url->getSchemeObj($config, $context);
27 27
 
28
-        if ($scheme->browsable && !$url->isBenign($config, $context)) {
29
-            $attr['target'] = 'blank';
30
-        }
28
+		if ($scheme->browsable && !$url->isBenign($config, $context)) {
29
+			$attr['target'] = 'blank';
30
+		}
31 31
 
32
-        return $attr;
32
+		return $attr;
33 33
 
34
-    }
34
+	}
35 35
 
36 36
 }
37 37
 
Please login to merge, or discard this patch.
security/htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform
7 7
 {
8 8
 
9
-    public function transform($attr, $config, $context) {
10
-        // Calculated from Firefox
11
-        if (!isset($attr['cols'])) $attr['cols'] = '22';
12
-        if (!isset($attr['rows'])) $attr['rows'] = '3';
13
-        return $attr;
14
-    }
9
+	public function transform($attr, $config, $context) {
10
+		// Calculated from Firefox
11
+		if (!isset($attr['cols'])) $attr['cols'] = '22';
12
+		if (!isset($attr['rows'])) $attr['rows'] = '3';
13
+		return $attr;
14
+	}
15 15
 
16 16
 }
17 17
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,12 @@
 block discarded – undo
8 8
 
9 9
     public function transform($attr, $config, $context) {
10 10
         // Calculated from Firefox
11
-        if (!isset($attr['cols'])) $attr['cols'] = '22';
12
-        if (!isset($attr['rows'])) $attr['rows'] = '3';
11
+        if (!isset($attr['cols'])) {
12
+        	$attr['cols'] = '22';
13
+        }
14
+        if (!isset($attr['rows'])) {
15
+        	$attr['rows'] = '3';
16
+        }
13 17
         return $attr;
14 18
     }
15 19
 
Please login to merge, or discard this patch.
classes/security/htmlpurifier/library/HTMLPurifier/AttrTypes.php 3 patches
Indentation   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -5,87 +5,87 @@
 block discarded – undo
5 5
  */
6 6
 class HTMLPurifier_AttrTypes
7 7
 {
8
-    /**
9
-     * Lookup array of attribute string identifiers to concrete implementations
10
-     */
11
-    protected $info = array();
8
+	/**
9
+	 * Lookup array of attribute string identifiers to concrete implementations
10
+	 */
11
+	protected $info = array();
12 12
 
13
-    /**
14
-     * Constructs the info array, supplying default implementations for attribute
15
-     * types.
16
-     */
17
-    public function __construct() {
18
-        // XXX This is kind of poor, since we don't actually /clone/
19
-        // instances; instead, we use the supplied make() attribute. So,
20
-        // the underlying class must know how to deal with arguments.
21
-        // With the old implementation of Enum, that ignored its
22
-        // arguments when handling a make dispatch, the IAlign
23
-        // definition wouldn't work.
13
+	/**
14
+	 * Constructs the info array, supplying default implementations for attribute
15
+	 * types.
16
+	 */
17
+	public function __construct() {
18
+		// XXX This is kind of poor, since we don't actually /clone/
19
+		// instances; instead, we use the supplied make() attribute. So,
20
+		// the underlying class must know how to deal with arguments.
21
+		// With the old implementation of Enum, that ignored its
22
+		// arguments when handling a make dispatch, the IAlign
23
+		// definition wouldn't work.
24 24
 
25
-        // pseudo-types, must be instantiated via shorthand
26
-        $this->info['Enum']    = new HTMLPurifier_AttrDef_Enum();
27
-        $this->info['Bool']    = new HTMLPurifier_AttrDef_HTML_Bool();
25
+		// pseudo-types, must be instantiated via shorthand
26
+		$this->info['Enum']    = new HTMLPurifier_AttrDef_Enum();
27
+		$this->info['Bool']    = new HTMLPurifier_AttrDef_HTML_Bool();
28 28
 
29
-        $this->info['CDATA']    = new HTMLPurifier_AttrDef_Text();
30
-        $this->info['ID']       = new HTMLPurifier_AttrDef_HTML_ID();
31
-        $this->info['Length']   = new HTMLPurifier_AttrDef_HTML_Length();
32
-        $this->info['MultiLength'] = new HTMLPurifier_AttrDef_HTML_MultiLength();
33
-        $this->info['NMTOKENS'] = new HTMLPurifier_AttrDef_HTML_Nmtokens();
34
-        $this->info['Pixels']   = new HTMLPurifier_AttrDef_HTML_Pixels();
35
-        $this->info['Text']     = new HTMLPurifier_AttrDef_Text();
36
-        $this->info['URI']      = new HTMLPurifier_AttrDef_URI();
37
-        $this->info['LanguageCode'] = new HTMLPurifier_AttrDef_Lang();
38
-        $this->info['Color']    = new HTMLPurifier_AttrDef_HTML_Color();
39
-        $this->info['IAlign']   = self::makeEnum('top,middle,bottom,left,right');
40
-        $this->info['LAlign']   = self::makeEnum('top,bottom,left,right');
41
-        $this->info['FrameTarget'] = new HTMLPurifier_AttrDef_HTML_FrameTarget();
29
+		$this->info['CDATA']    = new HTMLPurifier_AttrDef_Text();
30
+		$this->info['ID']       = new HTMLPurifier_AttrDef_HTML_ID();
31
+		$this->info['Length']   = new HTMLPurifier_AttrDef_HTML_Length();
32
+		$this->info['MultiLength'] = new HTMLPurifier_AttrDef_HTML_MultiLength();
33
+		$this->info['NMTOKENS'] = new HTMLPurifier_AttrDef_HTML_Nmtokens();
34
+		$this->info['Pixels']   = new HTMLPurifier_AttrDef_HTML_Pixels();
35
+		$this->info['Text']     = new HTMLPurifier_AttrDef_Text();
36
+		$this->info['URI']      = new HTMLPurifier_AttrDef_URI();
37
+		$this->info['LanguageCode'] = new HTMLPurifier_AttrDef_Lang();
38
+		$this->info['Color']    = new HTMLPurifier_AttrDef_HTML_Color();
39
+		$this->info['IAlign']   = self::makeEnum('top,middle,bottom,left,right');
40
+		$this->info['LAlign']   = self::makeEnum('top,bottom,left,right');
41
+		$this->info['FrameTarget'] = new HTMLPurifier_AttrDef_HTML_FrameTarget();
42 42
 
43
-        // unimplemented aliases
44
-        $this->info['ContentType'] = new HTMLPurifier_AttrDef_Text();
45
-        $this->info['ContentTypes'] = new HTMLPurifier_AttrDef_Text();
46
-        $this->info['Charsets'] = new HTMLPurifier_AttrDef_Text();
47
-        $this->info['Character'] = new HTMLPurifier_AttrDef_Text();
43
+		// unimplemented aliases
44
+		$this->info['ContentType'] = new HTMLPurifier_AttrDef_Text();
45
+		$this->info['ContentTypes'] = new HTMLPurifier_AttrDef_Text();
46
+		$this->info['Charsets'] = new HTMLPurifier_AttrDef_Text();
47
+		$this->info['Character'] = new HTMLPurifier_AttrDef_Text();
48 48
 
49
-        // "proprietary" types
50
-        $this->info['Class'] = new HTMLPurifier_AttrDef_HTML_Class();
49
+		// "proprietary" types
50
+		$this->info['Class'] = new HTMLPurifier_AttrDef_HTML_Class();
51 51
 
52
-        // number is really a positive integer (one or more digits)
53
-        // FIXME: ^^ not always, see start and value of list items
54
-        $this->info['Number']   = new HTMLPurifier_AttrDef_Integer(false, false, true);
55
-    }
52
+		// number is really a positive integer (one or more digits)
53
+		// FIXME: ^^ not always, see start and value of list items
54
+		$this->info['Number']   = new HTMLPurifier_AttrDef_Integer(false, false, true);
55
+	}
56 56
 
57
-    private static function makeEnum($in) {
58
-        return new HTMLPurifier_AttrDef_Clone(new HTMLPurifier_AttrDef_Enum(explode(',', $in)));
59
-    }
57
+	private static function makeEnum($in) {
58
+		return new HTMLPurifier_AttrDef_Clone(new HTMLPurifier_AttrDef_Enum(explode(',', $in)));
59
+	}
60 60
 
61
-    /**
62
-     * Retrieves a type
63
-     * @param $type String type name
64
-     * @return Object AttrDef for type
65
-     */
66
-    public function get($type) {
61
+	/**
62
+	 * Retrieves a type
63
+	 * @param $type String type name
64
+	 * @return Object AttrDef for type
65
+	 */
66
+	public function get($type) {
67 67
 
68
-        // determine if there is any extra info tacked on
69
-        if (strpos($type, '#') !== false) list($type, $string) = explode('#', $type, 2);
70
-        else $string = '';
68
+		// determine if there is any extra info tacked on
69
+		if (strpos($type, '#') !== false) list($type, $string) = explode('#', $type, 2);
70
+		else $string = '';
71 71
 
72
-        if (!isset($this->info[$type])) {
73
-            trigger_error('Cannot retrieve undefined attribute type ' . $type, E_USER_ERROR);
74
-            return;
75
-        }
72
+		if (!isset($this->info[$type])) {
73
+			trigger_error('Cannot retrieve undefined attribute type ' . $type, E_USER_ERROR);
74
+			return;
75
+		}
76 76
 
77
-        return $this->info[$type]->make($string);
77
+		return $this->info[$type]->make($string);
78 78
 
79
-    }
79
+	}
80 80
 
81
-    /**
82
-     * Sets a new implementation for a type
83
-     * @param $type String type name
84
-     * @param $impl Object AttrDef for type
85
-     */
86
-    public function set($type, $impl) {
87
-        $this->info[$type] = $impl;
88
-    }
81
+	/**
82
+	 * Sets a new implementation for a type
83
+	 * @param $type String type name
84
+	 * @param $impl Object AttrDef for type
85
+	 */
86
+	public function set($type, $impl) {
87
+		$this->info[$type] = $impl;
88
+	}
89 89
 }
90 90
 
91 91
 // vim: et sw=4 sts=4
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,11 @@
 block discarded – undo
66 66
     public function get($type) {
67 67
 
68 68
         // determine if there is any extra info tacked on
69
-        if (strpos($type, '#') !== false) list($type, $string) = explode('#', $type, 2);
70
-        else $string = '';
69
+        if (strpos($type, '#') !== false) {
70
+        	list($type, $string) = explode('#', $type, 2);
71
+        } else {
72
+        	$string = '';
73
+        }
71 74
 
72 75
         if (!isset($this->info[$type])) {
73 76
             trigger_error('Cannot retrieve undefined attribute type ' . $type, E_USER_ERROR);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
         // number is really a positive integer (one or more digits)
53 53
         // FIXME: ^^ not always, see start and value of list items
54
-        $this->info['Number']   = new HTMLPurifier_AttrDef_Integer(false, false, true);
54
+        $this->info['Number'] = new HTMLPurifier_AttrDef_Integer(false, false, true);
55 55
     }
56 56
 
57 57
     private static function makeEnum($in) {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         else $string = '';
71 71
 
72 72
         if (!isset($this->info[$type])) {
73
-            trigger_error('Cannot retrieve undefined attribute type ' . $type, E_USER_ERROR);
73
+            trigger_error('Cannot retrieve undefined attribute type '.$type, E_USER_ERROR);
74 74
             return;
75 75
         }
76 76
 
Please login to merge, or discard this patch.