includes/paths.php
changeset 770 62fed244fa1c
parent 748 e39454295bbb
child 771 5e85d7db8ee5
--- a/includes/paths.php	Sun Dec 21 04:24:52 2008 -0500
+++ b/includes/paths.php	Sun Dec 21 04:26:56 2008 -0500
@@ -619,7 +619,13 @@
     global $cache;
     
     // store data (TTL 20 minutes)
-    $cache->store('page_meta', $md_array, 20);
+    try
+    {
+      $cache->store('page_meta', $md_array, 20);
+    }
+    catch ( Exception $e )
+    {
+    }
     
     return true;
   }