Changeset 3051302
- Timestamp:
- 03/14/2024 07:19:16 PM (2 years ago)
- Location:
- petmatchpro/trunk
- Files:
-
- 6 edited
-
CHANGE-LOG.docx (modified) (previous)
-
CHANGE-LOG.pdf (modified) (previous)
-
CHANGE-LOG.txt (modified) (1 diff)
-
README.txt (modified) (1 diff)
-
includes/pp/class-pet-match-pro-pp-api.php (modified) (1 diff)
-
pet-match-pro.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
petmatchpro/trunk/CHANGE-LOG.txt
r3050057 r3051302 1 Version 4.6.2- March 14, 2024 2 + /includes/pp/class-pet-match-pro-pp-api.php 3 * Correct error with return of no combined lost/found search results. 1 4 2 5 Version 4.6.1- March 12, 2024 -
petmatchpro/trunk/README.txt
r3050057 r3051302 6 6 Requires at least: 5.0 7 7 Tested up to: 6.4 8 Stable tag: 4.6. 18 Stable tag: 4.6.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
petmatchpro/trunk/includes/pp/class-pet-match-pro-pp-api.php
r3050057 r3051302 737 737 } 738 738 $xmlWSArray=array(); 739 if ( ($firstArrayCount > 0) || ($nextArrayCount > 0) ) { 739 if ( ($firstArrayCount > 0) && ($nextArrayCount > 0) ) { 740 // if ( ($firstArrayCount > 0) || ($nextArrayCount > 0) ) { 740 741 $xmlWSArray = array_merge_recursive($firstxmlWSArray, $nextxmlWSArray); 741 742 /* Resequence Key Values */ 742 $xmlWSArray = array_values($xmlWSArray['XmlNode']);743 // $xmlWSArray = array_values($xmlWSArray['XmlNode']); 743 744 //echo '<pre>Results from Combining Arrays '; print_r($xmlWSArray); echo '</pre><br>'; 745 } elseif ($nextArrayCount > 0) { 746 //echo 'First Method Empty<br>'; 747 $xmlWSArray = $nextxmlWSArray; 748 } elseif ($firstArrayCount > 0) { 749 //echo 'Second Method Empty<br>'; 750 $xmlWSArray = $firstxmlWSArray; 744 751 } 745 752 746 if ( (is_countable($xmlWSArray)) ) { 753 //echo '<pre>Results from Combining Arrays '; print_r($xmlWSArray); echo '</pre><br>'; 754 755 if ( (is_countable($xmlWSArray)) && (array_key_exists('XmlNode',$xmlWSArray)) ) { 756 $xmlWSArray = array_values($xmlWSArray['XmlNode']); 747 757 $mergeCount = count($xmlWSArray); 748 758 } else { -
petmatchpro/trunk/pet-match-pro.php
r3050057 r3051302 13 13 * Plugin Name: PetMatchPro 14 14 * Description: Integrates animal search and details from your PetPoint/Petango or RescueGroups account into your website with simple shortcodes. 15 * Version: 4.6. 115 * Version: 4.6.2 16 16 * Author: PetMatchPro 17 17 * Author URI: https://PetMatchPro.com … … 28 28 * Current plugin version. 29 29 */ 30 define('PET_MATCH_PRO_VERSION', '4.6. 1');30 define('PET_MATCH_PRO_VERSION', '4.6.2'); 31 31 32 32 /* Define Global Variables */
Note: See TracChangeset
for help on using the changeset viewer.