changeset 770 | 62fed244fa1c |
parent 748 | e39454295bbb |
child 771 | 5e85d7db8ee5 |
769:1946d845bb25 | 770:62fed244fa1c |
---|---|
617 |
617 |
618 // import cache functions |
618 // import cache functions |
619 global $cache; |
619 global $cache; |
620 |
620 |
621 // store data (TTL 20 minutes) |
621 // store data (TTL 20 minutes) |
622 $cache->store('page_meta', $md_array, 20); |
622 try |
623 { |
|
624 $cache->store('page_meta', $md_array, 20); |
|
625 } |
|
626 catch ( Exception $e ) |
|
627 { |
|
628 } |
|
623 |
629 |
624 return true; |
630 return true; |
625 } |
631 } |
626 |
632 |
627 /** |
633 /** |