]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/sessiongc.php
Misses this file to merge. I like the comments.
[quix0rs-gnu-social.git] / scripts / sessiongc.php
index b5fdcbf341040ce265b58f1b07522b7e4f68572a..ef452fdb064f61847689f811368abcfb4d4fba47 100644 (file)
@@ -27,11 +27,10 @@ Delete old sessions from the server
 
 END_OF_GC_HELP;
 
-require_once INSTALLDIR.'/scripts/commandline.inc';
+require_once INSTALLDIR.'/scripts/commandline.inc.php';
 
 $maxlifetime = ini_get('session.gc_maxlifetime');
 
 print "Deleting sessions older than $maxlifetime seconds.\n";
 
 Session::gc($maxlifetime);
-?>