200. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2023-03-13 03:01:05 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

200.1 Files compared

#LocationFileLast Modified
1Porto v4.0.4/Porto Theme/app/design/frontend/Smartwave/porto/Magento_CatalogSearch/templatesresult.phtml2021-06-15 03:02:34 +0000
2Porto v4.0.5/Porto Theme/app/design/frontend/Smartwave/porto/Magento_CatalogSearch/templatesresult.phtml2022-11-18 08:30:41 +0000

200.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged370
Changed00
Inserted00
Removed22

200.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

200.4 Active regular expressions

No regular expressions were active.

200.5 Comparison detail

1 <?php 1 <?php
2 /** 2 /**
3  * Copyright © Magento, Inc. All rights reserved. 3  * Copyright © Magento, Inc. All rights reserved.
4  * See COPYING.txt for license details. 4  * See COPYING.txt for license details.
5  */ 5  */
6  6 
7 /** This changes need to valid applying filters and configuration before search process is started. */ 7 /** This changes need to valid applying filters and configuration before search process is started. */
8 $productList = $block->getProductListHtml(); 8 $productList = $block->getProductListHtml();
9 ?> 9 ?>
10 <?php if ($block->getResultCount()) : ?> 10 <?php if ($block->getResultCount()) : ?>
11     <?= /* @noEscape */ $block->getChildHtml('tagged_product_list_rss_link') ?> 11   <?= /* @noEscape */ $block->getChildHtml('tagged_product_list_rss_link') ?>
12 <div class="search results">    
13     <?php if ($messages = $block->getNoteMessages()) : ?> 12   <?php if ($messages = $block->getNoteMessages()) : ?>
14     <div class="message notice"> 13   <div class="message notice">
15         <div> 14       <div>
16             <?php foreach ($messages as $message) : ?> 15           <?php foreach ($messages as $message) : ?>
17                 <?= /* @noEscape */ $message ?><br /> 16               <?= /* @noEscape */ $message ?><br />
18             <?php endforeach; ?> 17           <?php endforeach; ?>
19         </div> 18       </div>
20     </div> 19   </div>
21     <?php endif; ?> 20   <?php endif; ?>
22     <?= /* @noEscape */ $productList ?> 21   <?= /* @noEscape */ $productList ?>
23 </div>    
24 <?php else : ?> 22 <?php else : ?>
25  23 
26 <div class="message notice"> 24 <div class="message notice">
27     <div> 25     <div>
28         <?= $block->escapeHtml($block->getNoResultText() ? $block->getNoResultText() : __('Your search returned no results.')) ?> 26         <?= $block->escapeHtml($block->getNoResultText() ? $block->getNoResultText() : __('Your search returned no results.')) ?>
29         <?= /* @noEscape */ $block->getAdditionalHtml() ?> 27         <?= /* @noEscape */ $block->getAdditionalHtml() ?>
30         <?php if ($messages = $block->getNoteMessages()) : ?> 28         <?php if ($messages = $block->getNoteMessages()) : ?>
31             <?php foreach ($messages as $message) : ?> 29             <?php foreach ($messages as $message) : ?>
32                 <br /><?= /* @noEscape */ $message ?> 30                 <br /><?= /* @noEscape */ $message ?>
33             <?php endforeach; ?> 31             <?php endforeach; ?>
34         <?php endif; ?> 32         <?php endif; ?>
35     </div> 33     </div>
36 </div> 34 </div>
37 <?php endif; ?> 35 <?php endif; ?>