///////////////////////////////////////////////// // // Mod : Third Gender Option // Author : Carbonize // Email : webmaster@carbonize.co.uk // URL : www.carbonize.co.uk // Created : 12/1/2005 // ///////////////////////////////////////////////// // // Files to be edited // // lib/add.class.php // templates/form_gender.php // lang/english.php // (or your chosen language) // ///////////////////////////////////////////////// //Open lib/add.class.php //Find : $GENDER = ($this->gender=="f") ? " " : " "; //Replace with : if (!(($this->gender=='f') || ($this->gender=='m'))) { $GENDER = ''; } else { $GENDER = ($this->gender=="f") ? " " : " "; } //Save and close the file. //Open templates/form_gender.php //Find : $LANG[FormMale]$LANG[FormFemale] //Replace with: $LANG[FormMale]$LANG[FormFemale]$LANG[FormNeuter] //Save and close the file. //Open lang/english.php (or your chosen language) //Find : $LANG["FormMale"] = "Male"; $LANG["FormFemale"] = "Female"; //Add after : $LANG["FormNeuter"] = "Not Saying"; //You can change the Not Saying to anything you wish //Save and close the file //End of mod