Description du MOD : Permet de rendre un champ du profil obligatoire lors de l'inscription du membre
Auteur du MOD : achaab < achaab@hotmail.fr > http://forum.phpbb.biz/
Niveau d'installation du MOD : Facile
Version du MOD : 1.0.0
Démo : Non
Compatible EasyMOD : Non
- Code: Tout sélectionner
##############################################################
## MOD Title: Champs obligatoires à l'inscription
## MOD Author: achaab < achaab@hotmail.fr > http://forum.phpbb.biz/
##
## MOD Description: Permet de rendre un champ du profil obligatoire lors
## de l'inscription du membre
##
## MOD Version: 1.0.0
##
## Installation Level: easy
## Installation Time: 2 Minute
##
## Files To Edit: include/usercp_register.php
## templates/subSilver/profile_add_body.tpl
##
## Included Files: N/A
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:
## Vous devez commencer par trouver le nom de votre variable définissant
## le champ que vous voulez rendre obligatoire. Sachez qu'elle se trouve dans
## le fichier "include/usercp_register.php" et qu'elle commence par $
## Voici la zone ou vous pourez la trouver (pour notre exemple, on prendra $msn) :
##
##
## $username = stripslashes($username);
## $email = stripslashes($email);
## $cur_password = htmlspecialchars(stripslashes($cur_password));
## $new_password = htmlspecialchars(stripslashes($new_password));
## $password_confirm = htmlspecialchars(stripslashes($password_confirm));
##
## $icq = stripslashes($icq);
## $aim = stripslashes($aim);
## $msn = stripslashes($msn);
## $yim = stripslashes($yim);
##
## $website = stripslashes($website);
## $location = stripslashes($location);
## $occupation = stripslashes($occupation);
## $interests = stripslashes($interests);
## $signature = stripslashes($signature);
##
## $user_lang = stripslashes($user_lang);
## $user_dateformat = stripslashes($user_dateformat);
##
##############################################################
##
## Informations : Ce mod a été testé et remit en page par l'equipe mod de phpBB.biz
##
## Vous en trouverez la derniere version a cette adresse :
## http://forum.phpbb.biz/viewtopic.php?t=94196
##
## Le support se trouve a cette adresse :
## http://forum.phpbb.biz/viewtopic.php?t=96388
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

