############################################################## ## MOD Title: Total Users ## MOD Author: paszczak000 ## MOD Description: ## In post repleace [users] to number of users in board ## ## MOD Version: 1.0.0 ## phpbb by przemo 1.9.* & 1.12.* ## ## Installation Level: EASY ## Installation Time: 5 Minutes ## Files To Edit: 1 ## incluedes/bbcode.php ## ############################################################## ## Before Applying This MOD To Your Forum, You Should Back Up All Files Related To It ############################################################## # #-----[ OPEN ]------------------------------------------ # incluedes/bbcode.php # #-----[ FIND ]------------------------------------------ # $username = ( $username == "Anonymous" ) ? $lang['Guest'] : $username; # #-----[ AFTER ADD ]------------------------------------------ # $total_users = get_db_stat('usercount'); $text = str_replace("[users:$uid]", $total_users, $text); # #-----[ FIND ]------------------------------------------ # $text = str_replace("[you]", "[you:$uid]", $text); # #-----[ AFTER ADD ]------------------------------------------ # $text = str_replace("[users]", "[users:$uid]", $text); # #--------[ SAVE & CLOSE ALL FILES ]-----------