Make WordPress Core

Ticket #60415: 60415.4.patch

File 60415.4.patch, 1.2 KB (added by upadalavipul, 3 years ago)

Added new patch

  • wp-includes/ID3/getid3.lib.php

     
    175175                        $binarypointnumber = '0'.$binarypointnumber;
    176176                }
    177177                $exponent = 0;
    178                 while (($binarypointnumber[0] != '1') || (substr($binarypointnumber, 1, 1) != '.')) {
     178                while (($binarypointnumber[0] !== '1') || (substr($binarypointnumber, 1, 1) !== '.')) {
    179179                        if (substr($binarypointnumber, 1, 1) == '.') {
    180180                                $exponent--;
    181181                                $binarypointnumber = substr($binarypointnumber, 2, 1).'.'.substr($binarypointnumber, 3);
  • wp-includes/class-pop3.php

     
    636636        {
    637637            $digit = substr($server_text,$count,1);
    638638            if(!empty($digit))             {
    639                 if( (!$outside) && ($digit != '<') && ($digit != '>') )
     639                if( (!$outside) && ($digit !== '<') && ($digit !== '>') )
    640640                {
    641641                    $banner .= $digit;
    642642                }