Index: branches/5.2.x/core/units/logs/system_logs/system_log_eh.php =================================================================== diff -u -N -r15608 -r16513 --- branches/5.2.x/core/units/logs/system_logs/system_log_eh.php (.../system_log_eh.php) (revision 15608) +++ branches/5.2.x/core/units/logs/system_logs/system_log_eh.php (.../system_log_eh.php) (revision 16513) @@ -1,6 +1,6 @@ getObject(); - /* @var $object kDBList */ if ( $event->Special == 'email' ) { $unique_id = $event->getEventParam('unique_id'); @@ -53,8 +53,8 @@ protected function OnSendNotifications(kEvent $event) { // initialize list outside of e-mail event with right settings + /** @var kDBList $list */ $list = $this->Application->recallObject($event->Prefix . '.email', $event->Prefix . '_List', Array ('per_page' => 20)); - /* @var $list kDBList */ if ( !$list->GetRecordsCount() ) { // no messages, that needs to be sent @@ -78,8 +78,8 @@ $this->Application->emailAdmin('SYSTEM.LOG.NOTIFY', null, $send_params); $this->Application->removeObject($event->Prefix . '.email'); + /** @var kDBItem $object */ $object = $event->getObject(Array ('skip_autoload' => true)); - /* @var $object kDBItem */ foreach ($list as $fields_hash) { $object->LoadFromHash($fields_hash); @@ -111,8 +111,8 @@ $ids = $this->Conn->GetCol($sql); if ( $ids ) { + /** @var kTempTablesHandler $temp_handler */ $temp_handler = $this->Application->recallObject($event->getPrefixSpecial() . '_TempHandler', 'kTempTablesHandler', Array ('parent_event' => $event)); - /* @var $temp_handler kTempTablesHandler */ $temp_handler->DeleteItems($event->Prefix, $event->Special, $ids); }