Changeset 3241019
- Timestamp:
- 02/15/2025 03:34:54 PM (14 months ago)
- Location:
- wpmktgengine
- Files:
-
- 6 edited
- 1 copied
-
tags/$SOURCE_TAG/trunk (copied) (copied from wpmktgengine/trunk)
-
tags/$SOURCE_TAG/trunk/libs/WPMKTENGINE/RepositoryPages.php (modified) (1 diff)
-
tags/$SOURCE_TAG/trunk/readme.txt (modified) (2 diffs)
-
tags/$SOURCE_TAG/trunk/wpmktgengine.php (modified) (1 diff)
-
trunk/libs/WPMKTENGINE/RepositoryPages.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpmktgengine.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpmktgengine/tags/$SOURCE_TAG/trunk/libs/WPMKTENGINE/RepositoryPages.php
r3198428 r3241019 109 109 public function getPages() 110 110 { 111 $prepForms = ''; 112 try { 113 if (!$prepForms = $this->cache->get(self::REPO_NAMESPACE, self::REPO_NAMESPACE)) { 114 $prepForms = $this->api->getPages(); 115 $this->cache->set(self::REPO_NAMESPACE, $prepForms, self::REPO_TIMER, self::REPO_NAMESPACE); 116 } 117 } catch (\Exception $e) { 118 } 119 $this->syncFailed = !is_array($prepForms); 120 return $this->syncFailed ? [] : $prepForms; 111 try { 112 $prepForms = $this->cache->get(self::REPO_NAMESPACE, self::REPO_NAMESPACE); 113 if (!is_array($prepForms) || !$prepForms) { 114 $prepForms = $this->api->getPages(); 115 if (is_array($prepForms)) { 116 $this->cache->set(self::REPO_NAMESPACE, $prepForms, self::REPO_TIMER, self::REPO_NAMESPACE); 117 } 118 } 119 } catch (\Exception $e) { 120 } 121 $this->syncFailed = !is_array($prepForms); 122 return $this->syncFailed ? [] : $prepForms; 121 123 } 122 124 -
wpmktgengine/tags/$SOURCE_TAG/trunk/readme.txt
r3222520 r3241019 3 3 Tags: email marketing automation, landing page builder, email marketing, lead generation, online marketing, CRM 4 4 Requires at least: 4.6.0 5 Tested up to: 6.7. 15 Tested up to: 6.7.2 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 Stable tag: 4.0.2 88 Stable tag: 4.0.29 9 9 10 10 … … 64 64 65 65 == Changelog == 66 = 4.0.29 = 67 * Fixed issue with PageBuilder pages (templates) being cleared from cache prior to being refreshed, and pages not able to display. 68 66 69 = 4.0.27 = 67 70 * Fixed dynamic CTA bug that wasn't inserting into middle of sidebar at specified position. -
wpmktgengine/tags/$SOURCE_TAG/trunk/wpmktgengine.php
r3222520 r3241019 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 4.0.2 88 Version: 4.0.29 9 9 License: GPLv2 10 10 Text Domain: wpmktgengine -
wpmktgengine/trunk/libs/WPMKTENGINE/RepositoryPages.php
r3198428 r3241019 109 109 public function getPages() 110 110 { 111 $prepForms = ''; 112 try { 113 if (!$prepForms = $this->cache->get(self::REPO_NAMESPACE, self::REPO_NAMESPACE)) { 114 $prepForms = $this->api->getPages(); 115 $this->cache->set(self::REPO_NAMESPACE, $prepForms, self::REPO_TIMER, self::REPO_NAMESPACE); 116 } 117 } catch (\Exception $e) { 118 } 119 $this->syncFailed = !is_array($prepForms); 120 return $this->syncFailed ? [] : $prepForms; 111 try { 112 $prepForms = $this->cache->get(self::REPO_NAMESPACE, self::REPO_NAMESPACE); 113 if (!is_array($prepForms) || !$prepForms) { 114 $prepForms = $this->api->getPages(); 115 if (is_array($prepForms)) { 116 $this->cache->set(self::REPO_NAMESPACE, $prepForms, self::REPO_TIMER, self::REPO_NAMESPACE); 117 } 118 } 119 } catch (\Exception $e) { 120 } 121 $this->syncFailed = !is_array($prepForms); 122 return $this->syncFailed ? [] : $prepForms; 121 123 } 122 124 -
wpmktgengine/trunk/readme.txt
r3222520 r3241019 3 3 Tags: email marketing automation, landing page builder, email marketing, lead generation, online marketing, CRM 4 4 Requires at least: 4.6.0 5 Tested up to: 6.7. 15 Tested up to: 6.7.2 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 Stable tag: 4.0.2 88 Stable tag: 4.0.29 9 9 10 10 … … 64 64 65 65 == Changelog == 66 = 4.0.29 = 67 * Fixed issue with PageBuilder pages (templates) being cleared from cache prior to being refreshed, and pages not able to display. 68 66 69 = 4.0.27 = 67 70 * Fixed dynamic CTA bug that wasn't inserting into middle of sidebar at specified position. -
wpmktgengine/trunk/wpmktgengine.php
r3222520 r3241019 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 4.0.2 88 Version: 4.0.29 9 9 License: GPLv2 10 10 Text Domain: wpmktgengine
Note: See TracChangeset
for help on using the changeset viewer.