[0.1.13] Option idunno not working in step 1b during install

Want to share what MODs you've gotten to work with EM? Happy about all the time your're saving? Want to say "thanks"? Here's the place.
Forum rules
DO NOT give out any FTP passwords to anyone! There is no reason to do so! If you need help badly enough, create a temporary FTP account that is restricted to only the files that you need help with and give the information for that. Giving out FTP information can be very dangerous!
Locked
HSorgYves
Registered User
Posts: 4
Joined: Wed May 04, 2005 9:28 pm
Location: Luxembourg
Contact:

[0.1.13] Option idunno not working in step 1b during install

Post by HSorgYves »

If you select the option idunno ("I have now modified my file permissions, try rescanning to see if EasyMOD has access.") in step 1b, then the following code will be executed (in easymod_install.php):

Code: Select all

else if ( $option == 'idunno')
		{
			display_step1_substep_b() ;
		}
The function display_step1_substep_b does not exist. Shoudn't it be:

Code: Select all

		else if ( $option == 'idunno')
		{
			display_step1b_idunno() ;
		}

Locked