[Fixed] [0.2.0a] Bug - 'Coming soon!' ;)

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
User avatar
Nux
Registered User
Posts: 943
Joined: Tue Jun 14, 2005 5:09 pm
Location: 3cities, Poland
Contact:

[Fixed] [0.2.0a] Bug - 'Coming soon!' ;)

Post by Nux »

That's a bug that is caused by mispelling Comming_soon and not the correct one Coming_soon. It causes people to get confused and ask silly questions like: why does uninstaling of MODs doesn't work.

In admin_easymod.php or admin_easymod.php.txt:

Find all ## lines: 1180, 1190, 1229

Code: Select all

message_die(GENERAL_MESSAGE, $lang['Comming_soon']);
Replace with

Code: Select all

	message_die(GENERAL_MESSAGE, $lang['Coming_soon']);
Find all ## lines: 1200, 1210, 1220

Code: Select all

	message_die(GENERAL_ERROR, $lang['Comming_soon']);
Replace with

Code: Select all

	message_die(GENERAL_MESSAGE, $lang['Coming_soon']);
Find ## line 1227

Code: Select all

	else if ( $mode == 'unistall_mod' )
Replace with

Code: Select all

	else if ( $mode == 'uninstall' )

wGEric
Registered User
Posts: 521
Joined: Wed Jun 11, 2003 2:07 am
Contact:

Re: [0.2.0a] Bug - 'Coming soon!' ;)

Post by wGEric »

I thought I fixed that typo ... thanks.
Eric

User avatar
Nux
Registered User
Posts: 943
Joined: Tue Jun 14, 2005 5:09 pm
Location: 3cities, Poland
Contact:

Re: [0.2.0a] Bug - 'Coming soon!' ;)

Post by Nux »

No problem :)...

Just a little PS: Notice that I suggested to also change GENERAL_ERROR to GENERAL_MESSAGE, not sure if that was a bug, but I belive that people having an error would shout "bug!" or "It's not working!", so it's better the message way ;).

wGEric
Registered User
Posts: 521
Joined: Wed Jun 11, 2003 2:07 am
Contact:

Re: [0.2.0a] Bug - 'Coming soon!' ;)

Post by wGEric »

This will be fixed in the next release. Thanks.
Eric

Locked