Index: trunk/core/kernel/processors/main_processor.php =================================================================== diff -u -r4225 -r4287 --- trunk/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 4225) +++ trunk/core/kernel/processors/main_processor.php (.../main_processor.php) (revision 4287) @@ -457,7 +457,7 @@ */ function RecallEquals($params) { - $name = $params['var']; + $name = $this->SelectParam($params, 'name,var'); $value = $params['value']; return ($this->Application->RecallVar($name) == $value); } @@ -858,6 +858,13 @@ $this->Application->LinkVar('module'); $this->Application->LinkVar('section'); } + + function StoreMainPrefix($params) + { + $this->Application->LinkVar('main_prefix'); // window prefix, that opener selector + $this->Application->LinkVar('dst_field'); // field to set value choosed in selector + $this->Application->LinkVar('return_template'); // template to go, when something was coosen from popup (from finalizePopup) + } }