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.

Code Duplication    Length = 12-12 lines in 2 locations

classes/security/Purifier.class.php 2 locations

@@ 103-114 (lines=12) @@
100
				unset($script, $m2);
101
				$script = " {$m[2][$key]} editor_component={$m[3][$key]}";
102
103
				if(preg_match_all('/([a-z0-9_-]+)="([^"]+)"/is', $script, $m2))
104
				{
105
					foreach($m2[1] as $value2)
106
					{
107
						//SECISSUE check style attr
108
						if($value2 == 'style')
109
						{
110
							continue;
111
						}
112
						$attributeList[] = $value2;
113
					}
114
				}
115
			}
116
		}
117
@@ 137-148 (lines=12) @@
134
135
			foreach($m[3] as $key => $value)
136
			{
137
				if (preg_match_all('/([a-z0-9_-]+)="([^"]+)"/is', $m[3][$key], $m2))
138
				{
139
					foreach($m2[1] as $value2)
140
					{
141
						//SECISSUE check style attr
142
						if($value2 == 'style')
143
						{
144
							continue;
145
						}
146
						$attributeList[] = $value2;
147
					}
148
				}
149
			}
150
		}
151
		return array_unique($attributeList);