Making WordPress.org

Ticket #2448: meta-2448.patch

File meta-2448.patch, 1.3 KB (added by SergeyBiryukov, 8 years ago)
  • irc-logger/public_html/header.php

     
    7373                <select name="channel">
    7474                <?php
    7575                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;
    7878                        $file = str_replace( '.sqlite.db', '', basename( $_db ) );
    7979                        echo "<option ";
    8080                        if ( $channel == $file )
  • irc-logger/public_html/index.php

     
    2525foreach ( glob( LOG_DIR . '*.db' ) as $db ) {
    2626        if ( "test" == strtolower( substr( basename( $db ), 0, 4 ) ) )
    2727                continue;
    28         if ( ( time() - filemtime( $db ) ) > 86400 )
    29                 continue;
     28        // if ( ( time() - filemtime( $db ) ) > 86400 )
     29                // continue;
    3030        $file = str_replace( '.sqlite.db', '', basename( $db ) );
    3131        $name = ucwords( str_replace( '-', ' ', $file ) );
    3232        $search  = array( 'press', 'bbpress', 'camp', 'cli', 'getinvolved', 'gsoc', 'sfd', 'ui', 'wpmu' );