Reputation: 5836
I'm getting these weird messages while working in CakePHP whenever I'm using a controller function that executes and redirects
Query: check
Query: setFlash
Query: write
Anyone else encountered this problem?
Upvotes: 2
Views: 211
Reputation: 5836
I found the problem, I declared a model called Session, so when I used CakePHP Session helper it took it as if it were my Session object. So when I did $this->Session->action()
it would output it as a Query
Upvotes: 1