eviL3 wrote:Here you are:Spoiler:
well? after a quick glance, I only see one problem? overall? it looks really good? but what do I expect

- Code: Select all
$this->push_error('No location has been provided for scaning!');
Language should never be put directly in a php file? it should always be put in a language file.
And, since this is inside a function, you would use
- Code: Select all
trigger_error($user->lang['NO_LOCATION_PROVIDED']);
you would also have to add $user as a global.
If it was not inside a function, you would just use
- Code: Select all
trigger_error('NO_LOCATION_PROVIDED');
since the language variables would be included in the page.







wow lol coding talk xD i must be in really low level for not to understand a thing of what you told lol at least i'm trying
lol


lol

