Hello,
I noticed that the Pages::added hook gets called twice. PW 3.0.62.
To test , add this to admin.php
wire()->addHookAfter('Pages::added', function($event) {
bardump('added'); // needs Tracy Debugger
});
Can anyone confirm this?
It gives me trouble when adding a hook tha...