Plugin Directory

Changeset 3241017


Ignore:
Timestamp:
02/15/2025 03:30:55 PM (14 months ago)
Author:
Genoo
Message:

Release $SOURCE_TAG

Location:
genoo
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • genoo/tags/$SOURCE_TAG/trunk/Genoo.php

    r3222513 r3241017  
    66    Author URI: http://www.genoo.com/
    77    Author Email: info@genoo.com
    8     Version: 6.0.21
     8    Version: 6.0.22
    99    License: GPLv2
    1010    Text Domain: genoo
  • genoo/tags/$SOURCE_TAG/trunk/libs/WPMKTENGINE/RepositoryPages.php

    r3198166 r3241017  
    109109    public function getPages()
    110110    {
    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;
    121123    }
    122124
  • genoo/tags/$SOURCE_TAG/trunk/readme.txt

    r3222513 r3241017  
    33Tags: marketing automation, email marketing, centralized lead database, lead capture forms
    44Requires at least: 4.6
    5 Tested up to: 6.7.1
     5Tested up to: 6.7.2
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    8 Stable tag: 6.0.21
     8Stable tag: 6.0.22
    99
    1010Combine the flexibility of WordPress with the power of Genoo and experience amazing results!
     
    7070== Changelog ==
    7171
     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
    7275= 6.0.19 =
    7376* Fixed Dynamic CTA specific position placement (2-n) display issue.
  • genoo/trunk/Genoo.php

    r3222513 r3241017  
    66    Author URI: http://www.genoo.com/
    77    Author Email: info@genoo.com
    8     Version: 6.0.21
     8    Version: 6.0.22
    99    License: GPLv2
    1010    Text Domain: genoo
  • genoo/trunk/libs/WPMKTENGINE/RepositoryPages.php

    r3198166 r3241017  
    109109    public function getPages()
    110110    {
    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;
    121123    }
    122124
  • genoo/trunk/readme.txt

    r3222513 r3241017  
    33Tags: marketing automation, email marketing, centralized lead database, lead capture forms
    44Requires at least: 4.6
    5 Tested up to: 6.7.1
     5Tested up to: 6.7.2
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    8 Stable tag: 6.0.21
     8Stable tag: 6.0.22
    99
    1010Combine the flexibility of WordPress with the power of Genoo and experience amazing results!
     
    7070== Changelog ==
    7171
     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
    7275= 6.0.19 =
    7376* Fixed Dynamic CTA specific position placement (2-n) display issue.
Note: See TracChangeset for help on using the changeset viewer.