I've got a function to automatically create a taxonomy entry when I create or edit a post. It's called using the save_post hook in WordPress, and works perfectly on the backend.
It doesn't work in Gforms though, and I'm assuming based on that that Gforms doesn't use WordPress' built-in post creation functions.
I found in forms_model.php that gforms uses the wp_insert_post() function, which does call the save_post hook. Why doesn't it seem to be working right then?