PDA

View Full Version : lang.php not included in forgotpass.php [ANSWERED]


arlecchina
07-14-2009, 01:28 PM
I am organizing my lang.php file to include all the text so that it is easier to proof read and edit.

I noticed that the lang.php file was not included in the forgotpass.php file.

Normally it would say (as in other files) under Basic Configuration:
include("lang/lang.php");
but it does not.

Is there any reason for this? If I were to add it to forgotpass.php would this create a security issue? The lang.php file is included in the login.php file so I don't see why it couldn't also be included in the forgotpass.php file.

Any confirmation that I'm not creating some huge security hole would be greatly appreciated. Thank you.

SJC
07-14-2009, 05:45 PM
Thats just because there is no content in lang.php for that specific file. So you dont need to include it :).

arlecchina
07-14-2009, 06:12 PM
Thats just because there is no content in lang.php for that specific file. So you dont need to include it :).

Thanks for your response. Just to make sure if I did included it, that would be ok, right?

Seapyramid
07-14-2009, 06:39 PM
It would be fine :)

Sea

arlecchina
07-14-2009, 06:42 PM
It would be fine :)

Sea

Thanks! That makes me feel better.