Index: branches/5.2.x/core/units/admin/admin_tag_processor.php =================================================================== diff -u -N -r15419 -r15420 --- branches/5.2.x/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 15419) +++ branches/5.2.x/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 15420) @@ -1,6 +1,6 @@ Application->ParseBlock($block_params); } @@ -875,6 +875,18 @@ return count( unserialize($errors) ); } + /** + * Detects if given exception isn't one caused by tag error + * + * @param Array $params + * @return string + * @access protected + */ + protected function IsParserException($params) + { + return mb_strtolower($params['class']) == 'parserexception'; + } + function ExportData($params) { $export_helper = $this->Application->recallObject('CSVHelper');