Removal of Information Removal of Information
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Removal of Information

Started by Forgottenmem, March 18, 2011, 06:56:44 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Forgottenmem

Andre, can you please tell me the exact bits that need to be removed.

Im using the: Who is online? (onlinestats): v2.6

Αndré

You want to remove the text in the red boxes, right?

Forgottenmem


Αndré

Open plugins/onlinestats/codebase.php and delete/comment out
        if ($num_users == 1) {
            printf($lang_plugin_php['onlinestats_we_have_reg_member'], '<strong>'.$num_users.'</strong>');
        } else {
            printf($lang_plugin_php['onlinestats_we_have_reg_members'], '<strong>'.$num_users.'</strong>');
        }
        echo '.&nbsp;' . $LINEBREAK;
        printf($lang_plugin_php['onlinestats_most_recent'], '<a href="profile.php?uid='.$newest['user_id'].'">'.$newest['user_name'].'</a>');
        echo '.&nbsp;' . $LINEBREAK;

and
        echo '.&nbsp;' . $LINEBREAK;
        printf($lang_plugin_php['onlinestats_since'], $CONFIG['mod_updates_duration'], $logged_in_names);

Forgottenmem

Very much appreciated Andre. Thank you for your time.