Index: branches/RC/core/units/categories/categories_event_handler.php =================================================================== diff -u -r9279 -r9361 --- branches/RC/core/units/categories/categories_event_handler.php (.../categories_event_handler.php) (revision 9279) +++ branches/RC/core/units/categories/categories_event_handler.php (.../categories_event_handler.php) (revision 9361) @@ -84,6 +84,12 @@ return $perm_value; } + if ($event->Name == 'OnPasteClipboard') { + // forces permission check to work by current category for "Paste In Category" operation + $category_id = $this->Application->GetVar('m_cat_id'); + $this->Application->SetVar('c_id', $category_id); + } + return parent::CheckPermission($event); }