Ticket #60415: 60415.6.patch
File 60415.6.patch, 3.0 KB (added by , 9 months ago) |
---|
-
wp-includes/ID3/module.audio-video.riff.php
2034 2034 foreach ($RIFFinfoKeyLookup as $key => $value) { 2035 2035 if (isset($RIFFinfoArray[$key])) { 2036 2036 foreach ($RIFFinfoArray[$key] as $commentid => $commentdata) { 2037 if (!empty($commentdata['data']) && trim($commentdata['data']) != '') {2037 if (!empty($commentdata['data']) && trim($commentdata['data']) !== '') { 2038 2038 if (isset($CommentsTargetArray[$value])) { 2039 2039 $CommentsTargetArray[$value][] = trim($commentdata['data']); 2040 2040 } else { -
wp-includes/IXR/class-IXR-message.php
191 191 break; 192 192 case 'value': 193 193 // "If no type is indicated, the type is string." 194 if (trim($this->_currentTagContents) != '') {194 if (trim($this->_currentTagContents) !== '') { 195 195 $value = (string)$this->_currentTagContents; 196 196 $valueFlag = true; 197 197 } -
wp-includes/SimplePie/Misc.php
2151 2151 header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 604800) . ' GMT'); // 7 days 2152 2152 ?> 2153 2153 function embed_quicktime(type, bgcolor, width, height, link, placeholder, loop) { 2154 if (placeholder != '') {2154 if (placeholder !== '') { 2155 2155 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>'); 2156 2156 } 2157 2157 else { -
wp-includes/Text/Diff/Engine/string.php
176 176 } 177 177 178 178 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) != ' ') { 180 180 break; 181 181 } 182 182 $array[] = substr($diff[$i++], 2); … … 183 183 } 184 184 185 185 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) != ' ') { 187 187 break; 188 188 } 189 189 $array[] = substr($diff[$j++], 2);