tombenner / wp-mvc

An MVC framework for WordPress
http://wpmvc.org
MIT License
625 stars 171 forks source link

Fix null type comparison issue when updating data #196

Closed patrik-csak closed 6 years ago

patrik-csak commented 7 years ago

When updating data, falsy values were saved as NULL due to the use of == instead of ===.

My changes are modeled after this fix, which addresses the same issue when inserting data.