Ticket #2448: meta-2448.patch
File meta-2448.patch, 1.3 KB (added by , 8 years ago) |
---|
-
irc-logger/public_html/header.php
73 73 <select name="channel"> 74 74 <?php 75 75 foreach ( glob( LOG_DIR . '*.db' ) as $_db ) { 76 if ( time() - filemtime( $_db ) > ( 86400 * 7 ) )77 continue;76 // if ( time() - filemtime( $_db ) > ( 86400 * 7 ) ) 77 // continue; 78 78 $file = str_replace( '.sqlite.db', '', basename( $_db ) ); 79 79 echo "<option "; 80 80 if ( $channel == $file ) -
irc-logger/public_html/index.php
25 25 foreach ( glob( LOG_DIR . '*.db' ) as $db ) { 26 26 if ( "test" == strtolower( substr( basename( $db ), 0, 4 ) ) ) 27 27 continue; 28 if ( ( time() - filemtime( $db ) ) > 86400 )29 continue;28 // if ( ( time() - filemtime( $db ) ) > 86400 ) 29 // continue; 30 30 $file = str_replace( '.sqlite.db', '', basename( $db ) ); 31 31 $name = ucwords( str_replace( '-', ' ', $file ) ); 32 32 $search = array( 'press', 'bbpress', 'camp', 'cli', 'getinvolved', 'gsoc', 'sfd', 'ui', 'wpmu' );