Don't forget that it may be too long, as well.Nuttzy99 wrote:And for that one MOD that appears in the list, it is probably b/c if the ' in the name.

Don't forget that it may be too long, as well.Nuttzy99 wrote:And for that one MOD that appears in the list, it is probably b/c if the ' in the name.
Code: Select all
##############################################################
## MOD Title: Member Country Flags (aka: Flags)
## MOD Author: Nuttzy < pktoolkit@blizzhackers.com > (Nuttzy) http://www.blizzhackers.com" target="_blank
## MOD Description: This mod allows your registered board
## members to select the flag country of
## their residence. Their flag will then
## display thoughout the phpBB system.
##
## MOD Version: 2.0.5
Code: Select all
#
#-----[ COPY IMAGES ]------------------------------------------
#
copy flag images to /images/flags
Code: Select all
#
#-----[ ALTER SCHEMA ]------------------------------------------
#
Run flags.sql - This will setup your db table
Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all, Folks!
Code: Select all
//
// That's all Folks!
Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------
#
$location = $userdata['user_from'];
Code: Select all
$location = htmlspecialchars($userdata['user_from']);
Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
admin/admin_users.php
#
#-----[ FIND ]------------------------------------------
#
$location = htmlspecialchars($userdata['user_from']);
Code: Select all
$location = $userdata['user_from'];
Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/admin/user_edit_body.tpl
Being fixed? so is it safe to use the ones in the mod database? or do I have to wait until new updated versions are released?Nuttzy99 wrote:BBCode MODs are being fixed. Those warnings are outdated now.
-Nuttzy