]> git.sur5r.net Git - contagged/blobdiff - help.php
Remove magic_quotes function
[contagged] / help.php
index eaa581754e394a4b898bcebe76ed01f9e8cc71ef..3efcf4dcd16d77b82310663b7d4a8c877a0c1d29 100644 (file)
--- a/help.php
+++ b/help.php
@@ -1,12 +1,11 @@
-<?
-  require_once('init.php');
-  ldap_login();
+<?php
+require_once('inc/init.php');
+ldap_login();
 
-  //prepare templates
-  tpl_std();
-  //display templates
-  $smarty->display('header.tpl');
-  $smarty->display('help.tpl');
-  $smarty->display('footer.tpl');
+//prepare templates
+tpl_std();
+//display templates
+header('Content-Type: text/html; charset=utf-8');
+$smarty->display('help.tpl');
 
 ?>