diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-10 22:44:11 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-10 22:45:01 -0700 |
commit | 47e91e06606918028be362ecf8e99b9f860eb8e8 (patch) | |
tree | a8915b365350e233fafe15dde76b7dc9b0520f5f | |
parent | 49fd53ee677fbf58dd427b0fcce475a1e73753fa (diff) | |
download | volse-hubzilla-47e91e06606918028be362ecf8e99b9f860eb8e8.tar.gz volse-hubzilla-47e91e06606918028be362ecf8e99b9f860eb8e8.tar.bz2 volse-hubzilla-47e91e06606918028be362ecf8e99b9f860eb8e8.zip |
don't expire posts before 2001
-rw-r--r-- | Zotlabs/Daemon/Cron.php | 3 | ||||
-rwxr-xr-x | util/zotsh/zotsh.py | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index 924667b05..350dda7a0 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -50,9 +50,8 @@ class Cron { // expire any expired items - $r = q("select id from item where expires > '%s' and expires < %s + $r = q("select id from item where expires > '2001-01-01 00:00:00' and expires < %s and item_deleted = 0 ", - dbesc(NULL_DATE), db_utcnow() ); if($r) { diff --git a/util/zotsh/zotsh.py b/util/zotsh/zotsh.py index 36506b39d..d5e1aa527 100755 --- a/util/zotsh/zotsh.py +++ b/util/zotsh/zotsh.py @@ -55,7 +55,7 @@ class ZotSH(object): @session.setter
def session(self, session):
self._session = session
- self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="cloud", verify_ssl=VERIFY_SSL)
+ self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="dav", verify_ssl=VERIFY_SSL)
@property
def PS1(self):
@@ -205,7 +205,7 @@ class ZotSH(object): print _fmt('d', 0, "../")
for f in r:
- name = f.name.replace("/cloud"+self.davclient.cwd,"")
+ name = f.name.replace("/dav"+self.davclient.cwd,"")
type = "-"
if name.endswith("/"):
type = "d"
|