Make WordPress Core

Ticket #60415: 60415.6.patch

File 60415.6.patch, 3.0 KB (added by upadalavipul, 9 months ago)

added new patch

  • wp-includes/ID3/module.audio-video.riff.php

     
    20342034                foreach ($RIFFinfoKeyLookup as $key => $value) {
    20352035                        if (isset($RIFFinfoArray[$key])) {
    20362036                                foreach ($RIFFinfoArray[$key] as $commentid => $commentdata) {
    2037                                         if (!empty($commentdata['data']) && trim($commentdata['data']) != '') {
     2037                                        if (!empty($commentdata['data']) && trim($commentdata['data']) !== '') {
    20382038                                                if (isset($CommentsTargetArray[$value])) {
    20392039                                                        $CommentsTargetArray[$value][] =     trim($commentdata['data']);
    20402040                                                } else {
  • wp-includes/IXR/class-IXR-message.php

     
    191191                break;
    192192            case 'value':
    193193                // "If no type is indicated, the type is string."
    194                 if (trim($this->_currentTagContents) != '') {
     194                if (trim($this->_currentTagContents) !== '') {
    195195                    $value = (string)$this->_currentTagContents;
    196196                    $valueFlag = true;
    197197                }
  • wp-includes/SimplePie/Misc.php

     
    21512151                header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 604800) . ' GMT'); // 7 days
    21522152                ?>
    21532153function embed_quicktime(type, bgcolor, width, height, link, placeholder, loop) {
    2154         if (placeholder != '') {
     2154        if (placeholder !== '') {
    21552155                document.writeln('<embed type="'+type+'" style="cursor:hand; cursor:pointer;" href="'+link+'" src="'+placeholder+'" width="'+width+'" height="'+height+'" autoplay="false" target="myself" controller="false" loop="'+loop+'" scale="aspect" bgcolor="'+bgcolor+'" pluginspage="http://www.apple.com/quicktime/download/"></embed>');
    21562156        }
    21572157        else {
  • wp-includes/Text/Diff/Engine/string.php

     
    176176            }
    177177
    178178            while ($i < $max_i && ($max_j-$j) <= 1) {
    179                 if ($diff[$i] != '' && substr($diff[$i], 0, 1) != ' ') {
     179                if ($diff[$i] !== '' && substr($diff[$i], 0, 1) != ' ') {
    180180                    break;
    181181                }
    182182                $array[] = substr($diff[$i++], 2);
     
    183183            }
    184184
    185185            while ($j < $max_j && ($max_i-$i) <= 1) {
    186                 if ($diff[$j] != '' && substr($diff[$j], 0, 1) != ' ') {
     186                if ($diff[$j] !== '' && substr($diff[$j], 0, 1) != ' ') {
    187187                    break;
    188188                }
    189189                $array[] = substr($diff[$j++], 2);