diff options
author | redmatrix <git@macgirvin.com> | 2016-07-06 22:02:06 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-06 22:02:06 -0700 |
commit | 581a3c532303c008390a2851a1e42c6f5de390b1 (patch) | |
tree | ce074f57b1aaf6aa168f6166a2e376e87d83aac7 /Zotlabs/Daemon/Expire.php | |
parent | ad954d01de7568e2834907b4eb24f71648c3a01d (diff) | |
download | volse-hubzilla-581a3c532303c008390a2851a1e42c6f5de390b1.tar.gz volse-hubzilla-581a3c532303c008390a2851a1e42c6f5de390b1.tar.bz2 volse-hubzilla-581a3c532303c008390a2851a1e42c6f5de390b1.zip |
expire crashing on shared hosting from memory exhaustion. Lower the expire limit. Also the sys channel was being expired with everybody else due to a flag change regression.
Diffstat (limited to 'Zotlabs/Daemon/Expire.php')
-rw-r--r-- | Zotlabs/Daemon/Expire.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Expire.php b/Zotlabs/Daemon/Expire.php index 0ba83b240..215513e87 100644 --- a/Zotlabs/Daemon/Expire.php +++ b/Zotlabs/Daemon/Expire.php @@ -38,7 +38,7 @@ class Expire { logger('site_expire: ' . $site_expire); - $r = q("SELECT channel_id, channel_address, channel_pageflags, channel_expire_days from channel where true"); + $r = q("SELECT channel_id, channel_system, channel_address, channel_expire_days from channel where true"); if ($r) { foreach ($r as $rr) { |