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 = 16-16 lines in 2 locations

classes/db/DBMysql.class.php 1 location

@@ 182-197 (lines=16) @@
179
	 * @param resource $connection
180
	 * @return resource
181
	 */
182
	function __query($query, $connection)
183
	{
184
		if(!$connection)
185
		{
186
			exit('XE cannot handle DB connection.');
187
		}
188
		// Run the query statement
189
		$result = mysql_query($query, $connection);
190
		// Error Check
191
		if(mysql_error($connection))
192
		{
193
			$this->setError(mysql_errno($connection), mysql_error($connection));
194
		}
195
		// Return result
196
		return $result;
197
	}
198
199
	/**
200
	 * Fetch the result

classes/db/DBMysql_innodb.class.php 1 location

@@ 110-125 (lines=16) @@
107
	 * @param resource $connection
108
	 * @return resource
109
	 */
110
	function __query($query, $connection)
111
	{
112
		if(!$connection)
113
		{
114
			exit('XE cannot handle DB connection.');
115
		}
116
		// Run the query statement
117
		$result = @mysql_query($query, $connection);
118
		// Error Check
119
		if(mysql_error($connection))
120
		{
121
			$this->setError(mysql_errno($connection), mysql_error($connection));
122
		}
123
		// Return result
124
		return $result;
125
	}
126
127
	/**
128
	 * Create table by using the schema xml