]> git.mxchange.org Git - mailer.git/blobdiff - inc/classes/cachesystem.class.php
Handling of cache 'earning' added
[mailer.git] / inc / classes / cachesystem.class.php
index 7d722b121e489c20177117b568e37b951505054e..6c2d8983dacd6a9d5496927475b5c67945ee0f4b 100644 (file)
@@ -207,6 +207,12 @@ class CacheSystem {
                                } elseif ($this->name == 'imprint') {
                                        // Imprint
                                        $GLOBALS['cache_array']['imprint'][$k][$data['imprint_id']] = $v;
+                               } elseif ($this->name == 'points_data') {
+                                       // Table 'points_data'
+                                       $GLOBALS['cache_array']['points_data'][$k][$data['id']] = $v;
+                               } elseif ($this->name == 'earning') {
+                                       // Table 'earning'
+                                       $GLOBALS['cache_array']['earning'][$k][$data['earning_id']] = $v;
                                } elseif (is_array($v)) {
                                        // Serialize and BASE64-encode the array
                                        $v = base64_encode(serialize($v));