1
0
Fork 0

added a check

This commit is contained in:
a-brandt 2013-06-28 10:17:39 +02:00
parent e0f7eb9df7
commit 93a8c574bd
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ Configuration example document:
////////////////////////////////////////////////////////////////////////////////
function stringToBoolean(string){
if (undefined === string) {
if (undefined === string || null === string) {
return false;
}