diff -r 3e73e4996d64 -r c08670a77871 includes/rijndael.php --- a/includes/rijndael.php Wed Jul 09 17:38:26 2008 -0400 +++ b/includes/rijndael.php Wed Jul 09 17:47:57 2008 -0400 @@ -1689,6 +1689,9 @@ function aes_decrypt_cache_store($encrypted, $decrypted, $key) { + if ( getConfig('cache_thumbs') != '1' ) + return false; + $cache_file = ENANO_ROOT . '/cache/aes_decrypt.php'; // only cache if $decrypted is long enough to actually warrant caching if ( strlen($decrypted) < 32 )