Changeset 2840367
- Timestamp:
- 12/28/2022 11:04:44 AM (3 years ago)
- Location:
- yes-co-ores-wordpress-plugin/trunk
- Files:
-
- 4 edited
-
includes/classes/yog_synchronization_manager.php (modified) (2 diffs)
-
includes/config/config.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
yesco-og.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
yes-co-ores-wordpress-plugin/trunk/includes/classes/yog_synchronization_manager.php
r2800680 r2840367 47 47 require_once(ABSPATH . 'wp-admin/includes/image.php'); 48 48 49 if (!$systemLink->hasCredentials() ) {49 if (!$systemLink->hasCredentials() || !$this->validateCredentials($systemLink->getCredentials())) { 50 50 $yogApi = new \YogApi(); 51 51 $yogApi->enrichSystemLink($systemLink); … … 1393 1393 } 1394 1394 1395 /** 1396 * Validate the credentials. 1397 * 1398 * @param YogSystemLinkCredentials $credentials 1399 * @return bool 1400 */ 1401 private function validateCredentials(YogSystemLinkCredentials $credentials) 1402 { 1403 $valid = true; 1404 1405 if (strpos($credentials->getPassword(), '@') !== false) { 1406 $valid = false; 1407 } 1408 1409 return $valid; 1410 } 1411 1395 1412 private function addDebugMessage($msg) 1396 1413 { -
yes-co-ores-wordpress-plugin/trunk/includes/config/config.php
r2818149 r2840367 22 22 define('YOG_POST_TYPE_ATTACHMENT', 'attachment'); 23 23 24 define('YOG_PLUGIN_VERSION', '1.3.8 2');24 define('YOG_PLUGIN_VERSION', '1.3.83'); 25 25 define('YOG_PLUGIN_DOJO_VERSION', '1.12.2'); // Old 1.9.3 26 26 ?> -
yes-co-ores-wordpress-plugin/trunk/readme.txt
r2818149 r2840367 4 4 Requires at least: 3.1 5 5 Tested up to: 6.0.2 6 Stable tag: 1.3.8 26 Stable tag: 1.3.83 7 7 8 8 Directly post real estate objects from your Yes-co system to your wordpress blog with the Yes-co Open Real Estate System (Yes-co ORES) Plugin. … … 94 94 95 95 == Changelog == 96 = 1.3.83 = 97 * Fixed: reading 3mcp feed in synchronization. 96 98 = 1.3.82 = 97 99 * Added: support to search on energie label (for houses, not yet in search widget) -
yes-co-ores-wordpress-plugin/trunk/yesco-og.php
r2818149 r2840367 5 5 Text Domain: yes-co-ores-wordpress-plugin 6 6 Description: Publiceert uw onroerend goed op uw Wordpress Blog 7 Version: 1.3.8 27 Version: 1.3.83 8 8 Author: Yes-co 9 9 Author URI: https://www.yes-co.nl
Note: See TracChangeset
for help on using the changeset viewer.