Index: irc-logger/public_html/header.php
===================================================================
--- irc-logger/public_html/header.php	(revision 432)
+++ irc-logger/public_html/header.php	(working copy)
@@ -73,8 +73,8 @@
 		<select name="channel">
 		<?php
 		foreach ( glob( LOG_DIR . '*.db' ) as $_db ) {
-			if ( time() - filemtime( $_db ) > ( 86400 * 7 ) )
-				continue;
+			// if ( time() - filemtime( $_db ) > ( 86400 * 7 ) )
+				// continue;
 			$file = str_replace( '.sqlite.db', '', basename( $_db ) );
 			echo "<option ";
 			if ( $channel == $file )
Index: irc-logger/public_html/index.php
===================================================================
--- irc-logger/public_html/index.php	(revision 432)
+++ irc-logger/public_html/index.php	(working copy)
@@ -25,8 +25,8 @@
 foreach ( glob( LOG_DIR . '*.db' ) as $db ) {
 	if ( "test" == strtolower( substr( basename( $db ), 0, 4 ) ) )
 		continue;
-	if ( ( time() - filemtime( $db ) ) > 86400 )
-		continue;
+	// if ( ( time() - filemtime( $db ) ) > 86400 )
+		// continue;
 	$file = str_replace( '.sqlite.db', '', basename( $db ) );
 	$name = ucwords( str_replace( '-', ' ', $file ) );
 	$search  = array( 'press', 'bbpress', 'camp', 'cli', 'getinvolved', 'gsoc', 'sfd', 'ui', 'wpmu' );
