diff options
author | Urban Müller | 2019-02-18 13:54:46 +0100 |
---|---|---|
committer | Urban Müller | 2019-02-18 13:54:46 +0100 |
commit | b8006fd12510e4056fb901b42a4d800deee316be (patch) | |
tree | 9e6bc0763bf5a420e5553a7056d10ab0479defbe /it.class | |
parent | a4bedb46f0530ad96eda5b8f6d82cc2bea2d2b8d (diff) | |
download | itools-b8006fd12510e4056fb901b42a4d800deee316be.tar.gz itools-b8006fd12510e4056fb901b42a4d800deee316be.tar.bz2 itools-b8006fd12510e4056fb901b42a4d800deee316be.zip |
prevent recursion
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ static function error($p = array()) @unlink($lastsentfn); @touch($lastsentfn); if (it::is_live()) - it_cache::put($lastsentfn, time(), ['distributed' => true, 'ttl' => 7*86400, 'safety' => 0]); + @it_cache::put($lastsentfn, time(), ['distributed' => true, 'ttl' => 7*86400, 'safety' => 0]); } } } |