formatting

This commit is contained in:
Miles Lott 2001-12-28 05:25:07 +00:00
parent bfeeced206
commit 31b533d00e

View File

@ -126,8 +126,10 @@
function db_addslashes($str)
{
if (!IsSet($str) || $str == '')
if (!isset($str) || $str == '')
{
return '';
}
return addslashes($str);
}