Passed
Pull Request — release-2.1 (#5180)
by Mathias
04:37 queued 10s
created
Sources/Subs-Db-mysql.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
 		$old_pos = 0;
415 415
 		$pos = -1;
416 416
 		// Remove the string escape for better runtime
417
-		$db_string_1 = str_replace('\'\'','',$db_string);
417
+		$db_string_1 = str_replace('\'\'', '', $db_string);
418 418
 		while (true)
419 419
 		{
420 420
 			$pos = strpos($db_string_1, '\'', $pos + 1);
@@ -975,7 +975,7 @@  discard block
 block discarded – undo
975 975
 	else
976 976
 	{
977 977
 		$return = array();
978
-		while($row = mysqli_fetch_assoc($request))
978
+		while ($row = mysqli_fetch_assoc($request))
979 979
 			$return[] = $row;
980 980
 	}
981 981
 	return !empty($return) ? $return : array();
Please login to merge, or discard this patch.