Moving 2.0 development version to main trunk.
[fa-stable.git] / includes / page / footer.inc
1 <?php
2
3 function page_footer($no_menu=false, $is_index=false)
4 {
5         global $path_to_root;
6
7         if (in_ajax())
8                 return;// just for speed up
9
10         if (!$is_index && function_exists('hyperlink_back'))
11                 hyperlink_back();
12         include_once($path_to_root."/themes/".user_theme()."/renderer.php");
13         $rend = new renderer();
14         $rend->menu_footer($no_menu, $is_index);
15     echo "</body></html>\n";
16 }
17
18 ?>