minor update

This commit is contained in:
Miroslav Stampar
2010-10-14 06:20:32 +00:00
parent 7e1f784eaa
commit 058e1aecb4
6 changed files with 5 additions and 13 deletions

View File

@@ -4,7 +4,7 @@ from lib.core.convert import urldecode
from lib.core.convert import urlencode
"""
IFNULL(A,B) -> IF(ISNULL(A),B,A)
IFNULL(A,B) -> IF(ISNULL(A),B,A) (e.g., IFNULL(1,2) -> IF(ISNULL(1),2,1))
"""
def tamper(place, value):
if value and value.find("IFNULL") > -1: