diff options
author | Max Kostikov <max@kostikov.co> | 2021-01-27 11:23:59 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-27 11:23:59 +0100 |
commit | 6326605c99a207a76626c681964a851b4d7c44cb (patch) | |
tree | ebfcc7fed7116fb8db95680454da602c2cec5091 /include/taxonomy.php | |
parent | f0ee4c3cef6c148bd397ad6a1e71ce86aa43565a (diff) | |
download | volse-hubzilla-6326605c99a207a76626c681964a851b4d7c44cb.tar.gz volse-hubzilla-6326605c99a207a76626c681964a851b4d7c44cb.tar.bz2 volse-hubzilla-6326605c99a207a76626c681964a851b4d7c44cb.zip |
Revert "Fix directory permissions on create"
This reverts commit 85c5e1178a57865ad977c260725da2839ebb4d98
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r-- | include/taxonomy.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php index 88d0a9196..7745b6a5b 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -357,10 +357,10 @@ function pub_tagadelic($net,$site,$limit,$recent,$safemode,$type) { $key = __FUNCTION__ . "-" . md5($site . $recent . $safemode . $limit . $type); - $content = Cache::get($key, '1 MINUTE'); + $content = Cache::get($key, '5 MINUTE'); if(! $content) { - $content = Cache::get($key, '1 WEEK'); + $content = Cache::get($key, '1 MONTH'); $arr = [ "SELECT term, count(term) AS total FROM term LEFT JOIN item ON term.oid = item.id WHERE term.ttype = %d |