Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Possible bug 2.5.1

I did a clean install of 2.5.1 and in categories the default posted there is 2 dates both say the same date

it says this

Most recent: How to start a great discussion by Victorine Courtois on February 22 February 22

one date is in the link Victorine Courtois on February 22

Comments

  • Options

    I fixed this on line 110 of categories helper_functions.php

    I changed this

            $r .= '<span class="MostRecentOn">';
            $r .= t('on').' ';
            $r .= anchor(
                Gdn_Format::date($row['LastDateInserted'], 'html'),
                $row['LastUrl'],
                'CommentDate');
            $r .= '</span>';
    

    to this

            $r .= '<span class="MostRecentOn">';
            $r .= t('on').' '; 
            $r .= '</span>';
    
Sign In or Register to comment.