Fixed many issues in output HTML code according to HTML 4.01 Transitional format.
[fa-stable.git] / includes / page / footer.inc
index e07f69838a5b900b126c5fc739b37eae7c9cae48..5804c3341069bf5a06802880b2cf37a31a4c720d 100644 (file)
@@ -9,12 +9,13 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
-function page_footer($no_menu=false, $is_index=false, $hide_back_link=false)
+function page_footer($no_menu=false, $is_index=false)
 {
-       global $path_to_root, $js_lib, $Validate, $Editors, $Ajax;
+       global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries;
+
+       $page_header_args = func_get_args();
+       hook_invoke_all('pre_footer', $page_header_args);
 
-       if (!$is_index && !$hide_back_link && function_exists('hyperlink_back'))
-               hyperlink_back();
        include_once($path_to_root."/themes/".user_theme()."/renderer.php");
        $rend = new renderer();
        $rend->menu_footer($no_menu, $is_index);
@@ -22,7 +23,7 @@ function page_footer($no_menu=false, $is_index=false, $hide_back_link=false)
        $edits = "editors = ".$Ajax->php2js($Editors).";";
        $Ajax->addScript('editors', $edits);
 
-       echo "<script>
+       echo "<script type='text/javascript'>
                _focus = '" . get_post('_focus') . "';
                _validate = " . $Ajax->php2js($Validate).";
                var $edits
@@ -34,6 +35,12 @@ function page_footer($no_menu=false, $is_index=false, $hide_back_link=false)
        foreach($js_lib as $text)
                echo $text;
        echo "\n--></script>\n";
+
+       if ($sql_queries) {
+               div_start('footer_debug');
+                echo "<div class='note_msg'>$sql_queries</div>";
+               div_end();
+       }
     echo "</body></html>\n";
 }