]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
[SCRIPTS] Fix sessiongc by XRevan86
authorDiogo Cordeiro <diogo@fc.up.pt>
Fri, 26 Jul 2019 17:25:47 +0000 (18:25 +0100)
committerDiogo Cordeiro <diogo@fc.up.pt>
Thu, 1 Aug 2019 13:38:04 +0000 (14:38 +0100)
lib/framework.php
scripts/sessiongc.php

index 9c93ac2283e6d16b2090e4484df069d7338d5f4d..80c13c92e988d6811be061dc5aea5f2546ea8d22 100644 (file)
@@ -32,7 +32,7 @@ defined('GNUSOCIAL') || die();
 define('GNUSOCIAL_ENGINE', 'GNU social');
 define('GNUSOCIAL_ENGINE_URL', 'https://www.gnu.org/software/social/');
 
-define('GNUSOCIAL_BASE_VERSION', '1.20.7');
+define('GNUSOCIAL_BASE_VERSION', '1.20.8');
 define('GNUSOCIAL_LIFECYCLE', 'release'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
 
 define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE);
index af55ddf3f0d971d9c8af92636104c9527ecf4cb9..a2ca2038899dd8130b9fd9771f368d651b0c036f 100755 (executable)
@@ -1,24 +1,21 @@
 #!/usr/bin/env php
 <?php
-/*
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
+// This file is part of GNU social - https://www.gnu.org/software/social
+//
+// GNU social is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// GNU social is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
+
+define('INSTALLDIR', dirname(__DIR__));
 
 $helptext = <<<END_OF_GC_HELP
 sessiongc.php
@@ -33,4 +30,4 @@ $maxlifetime = ini_get('session.gc_maxlifetime');
 
 print "Deleting sessions older than $maxlifetime seconds.\n";
 
-Session::gc($maxlifetime);
+InternalSessionHandler::gc($maxlifetime);