Where is profilcp_register.php
 Posted: Tue Oct 31, 2006 8:42 am
Posted: Tue Oct 31, 2006 8:42 amI need to make some changes to the SQL INSERT when a new user registers on my site, but i cannot find the profilcp_register.php file.
Was it replaced with something else in IM?
The problem I am having is that I need one of the fields in phpbb_users to default to 1.
The DB is set as default of 1 and I put the below code into profilcp/def/def_userfields_phpbb.php
But it is still set to 0 when someone registers on the site.
			Was it replaced with something else in IM?
The problem I am having is that I need one of the fields in phpbb_users to default to 1.
The DB is set as default of 1 and I put the below code into profilcp/def/def_userfields_phpbb.php
      'user_allowweblog' => array(            'type'         => 'TINYINT',            'length'      => 1,            'not_null'   => true,            'default'     => 1,      ),
But it is still set to 0 when someone registers on the site.