Skip to content

Commit

Permalink
Add extra check on Delete statements
Browse files Browse the repository at this point in the history
  • Loading branch information
fmk committed Jul 24, 2001
1 parent 050d346 commit 612b366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/fbsql/php_fbsql.c
Expand Up @@ -1582,7 +1582,7 @@ static void phpfbQuery(INTERNAL_FUNCTION_PARAMETERS, char* sql, PHPFBLink* link)
if (sR == 1 && md) fbcmdRelease(md);
ZVAL_BOOL(return_value, 1)
}
else if(tp[0] == 'A')
else if(tp[0] == 'A' || tp[0] == 'D')
{
if (sR == 1 && md) fbcmdRelease(md);
ZVAL_BOOL(return_value, 1)
Expand Down

0 comments on commit 612b366

Please sign in to comment.