Changeset 3241017
- Timestamp:
- 02/15/2025 03:30:55 PM (14 months ago)
- Location:
- genoo
- Files:
-
- 6 edited
- 1 copied
-
tags/$SOURCE_TAG/trunk (copied) (copied from genoo/trunk)
-
tags/$SOURCE_TAG/trunk/Genoo.php (modified) (1 diff)
-
tags/$SOURCE_TAG/trunk/libs/WPMKTENGINE/RepositoryPages.php (modified) (1 diff)
-
tags/$SOURCE_TAG/trunk/readme.txt (modified) (2 diffs)
-
trunk/Genoo.php (modified) (1 diff)
-
trunk/libs/WPMKTENGINE/RepositoryPages.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
genoo/tags/$SOURCE_TAG/trunk/Genoo.php
r3222513 r3241017 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 6.0.2 18 Version: 6.0.22 9 9 License: GPLv2 10 10 Text Domain: genoo -
genoo/tags/$SOURCE_TAG/trunk/libs/WPMKTENGINE/RepositoryPages.php
r3198166 r3241017 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 -
genoo/tags/$SOURCE_TAG/trunk/readme.txt
r3222513 r3241017 3 3 Tags: marketing automation, email marketing, centralized lead database, lead capture forms 4 4 Requires at least: 4.6 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: 6.0.2 18 Stable tag: 6.0.22 9 9 10 10 Combine the flexibility of WordPress with the power of Genoo and experience amazing results! … … 70 70 == Changelog == 71 71 72 = 6.0.22 = 73 * Fixed issue with PageBuilder pages (templates) being cleared from cache prior to being refreshed, and pages not able to display. 74 72 75 = 6.0.19 = 73 76 * Fixed Dynamic CTA specific position placement (2-n) display issue. -
genoo/trunk/Genoo.php
r3222513 r3241017 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 6.0.2 18 Version: 6.0.22 9 9 License: GPLv2 10 10 Text Domain: genoo -
genoo/trunk/libs/WPMKTENGINE/RepositoryPages.php
r3198166 r3241017 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 -
genoo/trunk/readme.txt
r3222513 r3241017 3 3 Tags: marketing automation, email marketing, centralized lead database, lead capture forms 4 4 Requires at least: 4.6 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: 6.0.2 18 Stable tag: 6.0.22 9 9 10 10 Combine the flexibility of WordPress with the power of Genoo and experience amazing results! … … 70 70 == Changelog == 71 71 72 = 6.0.22 = 73 * Fixed issue with PageBuilder pages (templates) being cleared from cache prior to being refreshed, and pages not able to display. 74 72 75 = 6.0.19 = 73 76 * Fixed Dynamic CTA specific position placement (2-n) display issue.
Note: See TracChangeset
for help on using the changeset viewer.