Display Guest in "Who is online"

Guides & Snippets for phpBB3.
Try the Snippets here and share Your own Snippets

Display Guest in "Who is online"

Post by Post Bot »

Display Guest in "Who is online"

Author: Unknown
Description: In "Who's on-line" will be automatically shown unregistered users
Attached file: none
Demo: none

Instructions:
Open viewonline.php
Find:

Code: Select all

$show_guests= ($config['load_online_guests']) ? request_var('sg', 0) : 0;
Replace with:

Code: Select all

$show_guests= ($config['load_online_guests']) ? request_var('sg', 1) : 0;