Is my problem with the use of the negation operator? Or should I be calling the function in the condition instead of assigning to a variable and then evaluating the variable?
``` $vn(alias_found) = alias_db_lookup("DbAliases"); if ( !$vn(alias_found) ) { ## I would expect this to execute if no alias is found. return; } ## I would expect to reach here if the alias is found. ```