Changed update.html, empty.po for application and install from iso-8859-2 to iso...
[fa-stable.git] / includes / page / footer.inc
index 90c951c19bb46e60327b4bf3c8ac5831056c93b1..633a0fb7d823367e7731d1c1a5cd73045fad67c3 100644 (file)
 ***********************************************************************/
 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;
 
-       if (!$is_index && 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);
@@ -34,6 +32,12 @@ function page_footer($no_menu=false, $is_index=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";
 }