Changeset 3052183
- Timestamp:
- 03/16/2024 03:08:39 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) (2 diffs)
-
pet-match-pro.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
petmatchpro/trunk/CHANGE-LOG.txt
r3051302 r3052183 1 Version 4.6.3- March 15, 2024 2 + /includes/pp/class-pet-match-pro-pp-api.php 3 * Correct error with return of no combined lost/found search results. 4 1 5 Version 4.6.2- March 14, 2024 2 6 + /includes/pp/class-pet-match-pro-pp-api.php -
petmatchpro/trunk/README.txt
r3051302 r3052183 6 6 Requires at least: 5.0 7 7 Tested up to: 6.4 8 Stable tag: 4.6. 28 Stable tag: 4.6.3 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
r3051302 r3052183 716 716 717 717 /* Remove Last Blank Entry from Arrays */ 718 if (is_countable($firstxmlWSArray['XmlNode'])) { 719 $firstArrayCount = count($firstxmlWSArray['XmlNode'])-1; 718 if (array_key_exists('XmlNode', $firstxmlWSArray)) { 719 if (is_countable($firstxmlWSArray['XmlNode'])) { 720 $firstArrayCount = count($firstxmlWSArray['XmlNode'])-1; 721 } else { 722 $firstArrayCount = 0; 723 } 720 724 } else { 721 $firstArrayCount = 0;725 $firstArrayCount = 0; 722 726 } 723 727 //echo 'First Array Count = ' . $firstArrayCount . '<br>'; … … 726 730 unset($firstxmlWSArray['XmlNode'][$firstUnset]); 727 731 } 728 if (is_countable($nextxmlWSArray['XmlNode'])) { 729 $nextArrayCount = count($nextxmlWSArray['XmlNode'])-1; 730 } else { 731 $nextArrayCount = 0; 732 } 732 if (array_key_exists('XmlNode', $nextxmlWSArray)) { 733 if (is_countable($nextxmlWSArray['XmlNode'])) { 734 $nextArrayCount = count($nextxmlWSArray['XmlNode'])-1; 735 } else { 736 $nextArrayCount = 0; 737 } 738 } else { 739 $nextArrayCount = 0; 740 } 733 741 //echo 'Next Array Count = ' . $nextArrayCount . '<br>'; 734 742 $nextUnset = $nextArrayCount; -
petmatchpro/trunk/pet-match-pro.php
r3051302 r3052183 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. 215 * Version: 4.6.3 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. 2');30 define('PET_MATCH_PRO_VERSION', '4.6.3'); 31 31 32 32 /* Define Global Variables */
Note: See TracChangeset
for help on using the changeset viewer.