Index: branches/5.3.x/core/install/install_toolkit.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/install/install_toolkit.php (.../install_toolkit.php) (revision 15902) +++ branches/5.3.x/core/install/install_toolkit.php (.../install_toolkit.php) (revision 15911) @@ -1,6 +1,6 @@ GetMaxModuleVersion($module_path); @@ -1185,4 +1184,4 @@ return $compression_engines; } - } \ No newline at end of file + } Index: branches/5.3.x/core/kernel/utility/debugger.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/kernel/utility/debugger.php (.../debugger.php) (revision 15902) +++ branches/5.3.x/core/kernel/utility/debugger.php (.../debugger.php) (revision 15911) @@ -1,6 +1,6 @@ IsFatalError = true; @@ -1985,4 +1983,4 @@ if ( DebuggerUtil::constOn('DBG_USE_SHUTDOWN_FUNC') ) { register_shutdown_function(Array (&$debugger, 'printReport')); } - } \ No newline at end of file + } Index: branches/5.3.x/core/units/helpers/curl_helper.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15902) +++ branches/5.3.x/core/units/helpers/curl_helper.php (.../curl_helper.php) (revision 15911) @@ -1,6 +1,6 @@ requestMethod = $request_method; @@ -534,4 +532,4 @@ return ($this->lastHTTPCode == 200) || ($this->lastHTTPCode >= 300 && $this->lastHTTPCode < 310); } - } \ No newline at end of file + } Index: branches/5.3.x/core/units/helpers/mod_rewrite_helper.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/units/helpers/mod_rewrite_helper.php (.../mod_rewrite_helper.php) (revision 15902) +++ branches/5.3.x/core/units/helpers/mod_rewrite_helper.php (.../mod_rewrite_helper.php) (revision 15911) @@ -1,6 +1,6 @@ ' . __FUNCTION__ . '" no longer work with "c" prefix. Please use "getCategoryCache" method instead'); - - return false; } $category_id = isset($category_id) ? $category_id : $this->Application->GetVar('m_cat_id'); Index: branches/5.3.x/core/kernel/nparser/nparser.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/kernel/nparser/nparser.php (.../nparser.php) (revision 15902) +++ branches/5.3.x/core/kernel/nparser/nparser.php (.../nparser.php) (revision 15911) @@ -1,6 +1,6 @@ TagInfo($this->Stack[$this->Level]->Tag), 0, null, $error_tag); - - return false; } // appending text data after last tag (after its closing pos), @@ -256,8 +254,6 @@ if (!preg_match('/([^_ \t\r\n]*)[_]?([^ \t\r\n]*)[ \t\r\n]*(.*)$$/s', $tag['tag'], $parts)) { // this is virtually impossible, but just in case throw new ParserException('Incorrect tag format: ' . $tag['tag'], 0, null, $tag); - - return false; } $splited['prefix'] = $parts[2] ? $parts[1] : '__auto__'; @@ -309,8 +305,6 @@ $error_msg = 'Closing tag without an opening: ' . $this->TagInfo($tag) . ' - probably opening tag was removed or nested tags error'; throw new ParserException($error_msg, 0, null, $tag); - - return false; } if ($this->Stack[$this->Level]->Tag['name'] != $tag['name']) { @@ -320,8 +314,6 @@ opening tag at current nesting level (' . $this->TagInfo($opening_tag) . ' opened at line ' . $opening_tag['line'] . ')'; throw new ParserException($error_msg, 0, null, $tag); - - return false; } $o .= $this->Stack[$this->Level]->Close($tag); // DO NOT use $this->Level-- here because it's used inside Close @@ -332,8 +324,6 @@ if (!$tag['is_closing']) { $error_msg = 'Tag without a handler: ' . $this->TagInfo($tag) . ' - probably missing <empty /> tag closing'; throw new ParserException($error_msg, 0, null, $tag); - - return false; } if ($this->Level > 0) $o .= $this->Stack[$this->Level]->PassThrough($tag); @@ -404,8 +394,6 @@ if (!is_object($p) || !$p->CheckTag($tag['name'], $tag['prefix'])) { $error_msg = 'Unknown tag: ' . $this->TagInfo($tag) . ' - incorrect tag name or prefix'; throw new ParserException($error_msg, 0, null, $tag); - - return false; } } @@ -710,8 +698,6 @@ $error_msg = 'Rendering of undefined element ' . $params['name'] . ''; throw new ParserException($error_msg, 0, null, $error_tag); - - return false; } $m_processor =& $this->GetProcessor('m'); @@ -1203,4 +1189,4 @@ $this->line = $tag['line']; } } -} \ No newline at end of file +} Index: branches/5.3.x/core/kernel/db/db_tag_processor.php =================================================================== diff -u -N -r15908 -r15911 --- branches/5.3.x/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 15908) +++ branches/5.3.x/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 15911) @@ -1,6 +1,6 @@ ' . $object->GetDBField('VariableName') . '" configuration variable'); - return ''; } $params['name'] = $params['blocks_prefix'] . $element_type; @@ -3190,4 +3189,4 @@ return ''; } -} \ No newline at end of file +} Index: branches/5.3.x/core/units/admin/admin_tag_processor.php =================================================================== diff -u -N -r15907 -r15911 --- branches/5.3.x/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 15907) +++ branches/5.3.x/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 15911) @@ -1,6 +1,6 @@ getSectionData($section); if (!$section_data) { throw new Exception('Use of undefined section "' . $section . '" in "' . __METHOD__ . '"'); - return ''; } if (array_key_exists('parent', $params) && $params['parent']) { @@ -1193,4 +1192,4 @@ return $this->Application->ParseBlock($block_params); } - } \ No newline at end of file + } Index: branches/5.3.x/core/kernel/application.php =================================================================== diff -u -N -r15910 -r15911 --- branches/5.3.x/core/kernel/application.php (.../application.php) (revision 15910) +++ branches/5.3.x/core/kernel/application.php (.../application.php) (revision 15911) @@ -1,6 +1,6 @@ InitDone ) { throw new Exception('Duplicate call of ' . __METHOD__, E_USER_ERROR); - return; } $this->UrlManager = $this->makeClass('kUrlManager'); Index: branches/5.3.x/core/kernel/processors/tag_processor.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 15902) +++ branches/5.3.x/core/kernel/processors/tag_processor.php (.../tag_processor.php) (revision 15911) @@ -1,6 +1,6 @@ $file, 'line' => $line); throw new ParserException('Undefined tag: ' . $prefix . ':' . $tag . '', 0, null, $error_tag); - - return false; } } @@ -346,4 +344,4 @@ $this->CreateProcessor($prefix, $tag); return $this->Processors[$prefix]; } -}*/ \ No newline at end of file +}*/ Index: branches/5.3.x/core/kernel/nparser/ntags.php =================================================================== diff -u -N -r15902 -r15911 --- branches/5.3.x/core/kernel/nparser/ntags.php (.../ntags.php) (revision 15902) +++ branches/5.3.x/core/kernel/nparser/ntags.php (.../ntags.php) (revision 15911) @@ -1,6 +1,6 @@