fuel / orm

Fuel PHP Framework - Fuel v1.x ORM
http://fuelphp.com/docs/packages/orm/intro.html
152 stars 96 forks source link

Fix regression caused by last pull request in query.php #436

Closed AdamSGit closed 4 years ago

AdamSGit commented 4 years ago

When including your reviews regarding my last pull request, I replaced the empty check by isset instead of ! isset

This would cause to override all property already defined from cached objects. If observer_typing is used, existing and typed properties would then be replaced by non typed values from db and so invalidate it.

My bad.