Index: wp-includes/ID3/getid3.lib.php
===================================================================
--- wp-includes/ID3/getid3.lib.php	(revision 56808)
+++ wp-includes/ID3/getid3.lib.php	(working copy)
@@ -175,7 +175,7 @@
 			$binarypointnumber = '0'.$binarypointnumber;
 		}
 		$exponent = 0;
-		while (($binarypointnumber[0] != '1') || (substr($binarypointnumber, 1, 1) != '.')) {
+		while (($binarypointnumber[0] !== '1') || (substr($binarypointnumber, 1, 1) !== '.')) {
 			if (substr($binarypointnumber, 1, 1) == '.') {
 				$exponent--;
 				$binarypointnumber = substr($binarypointnumber, 2, 1).'.'.substr($binarypointnumber, 3);
Index: wp-includes/class-pop3.php
===================================================================
--- wp-includes/class-pop3.php	(revision 56808)
+++ wp-includes/class-pop3.php	(working copy)
@@ -636,7 +636,7 @@
         {
             $digit = substr($server_text,$count,1);
             if(!empty($digit))             {
-                if( (!$outside) && ($digit != '<') && ($digit != '>') )
+                if( (!$outside) && ($digit !== '<') && ($digit !== '>') )
                 {
                     $banner .= $digit;
                 }
