Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ant-V committed Feb 21, 2016
1 parent 8ae1b9d commit a381f91
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ There is a plan to add a way to catch a phrase not translated in the xml (line 5
Feel free to change it to your needs!

####Warning
This script uses $_SESSION variables, but does not check whether it has been initialized or not, mostly because there are many cases in which you may want to manage the session before hand.
This script uses $_SESSION variables, but does not check whether it has been initialized or not, mostly because there are many cases in which you may want to manage the session before hand. If you don't, you may want to add the following on the very top of your php file:

>if(!isset($_SESSION))
>{
> session_start();
>}

0 comments on commit a381f91

Please sign in to comment.