In /includes/classes/order.php the notifiers have been changed from using...
PHP Code:
$zco_notifier->notify(); 
...to...
PHP Code:
$this->notify(); 
This makes the code look cleaner but doesn't it make the notifiers unusable? My understanding is that to use these notifiers you would now have to attach the observers to the order object. However the order object isn't created until after all the auto-loaders have finished loading.

Am I missing something? Is there now a way to attach an observer to the order object, or even the order classs?

Regards,
Christian.