From d87f76019fc231ec20d95126a7fee0487e7be5f0 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 14 Aug 2012 10:56:20 -0400
Subject: [PATCH] - Added new web folder named private to web folder layout. The folder is intended to store data that shall not be visible in the web directory, it is owned by the user of the web. - Changed ownership of web root directory to root user in all security modes to prevent symlink attacks. - Apache log files are now owned by user root. - Improved functions in system library.

---
 interface/web/help/templates/faq_manage_questions_list.htm |   80 +++++++++++++++++++--------------------
 1 files changed, 39 insertions(+), 41 deletions(-)

diff --git a/interface/web/help/templates/faq_manage_questions_list.htm b/interface/web/help/templates/faq_manage_questions_list.htm
index 2dc1e87..c045dfb 100644
--- a/interface/web/help/templates/faq_manage_questions_list.htm
+++ b/interface/web/help/templates/faq_manage_questions_list.htm
@@ -1,45 +1,43 @@
 <h2>{tmpl_var name="faq_faq_questions_txt"}</h2>
 <div class="panel panel_support_message">
-  <div class="pnl_toolsarea">
-    <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend>
-      <div class="buttons">
-<button class="iconstxt icoAdd" type="button" onclick="loadContent('help/faq_edit.php');">
-          <span>{tmpl_var name="faq_new_question_txt"}</span>
-        </button>
-      </div>
-    </fieldset>
-  </div>
+    
+    <div class="pnl_toolsarea">
+        <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend>
+            <div class="buttons">
+                <button class="iconstxt icoAdd" type="button" onclick="loadContent('help/faq_edit.php');">
+                    <span>{tmpl_var name="faq_new_question_txt"}</span>
+                </button>
+            </div>
+        </fieldset>
+    </div>
 
-<div class="pnl_listarea">
-<fieldset><legend><tmpl_var name="faq_sections_txt"></legend>
-<table class="list">
-	<thead>
-          <tr>
-            <th class="tbl_col_active" scope="col">{tmpl_var name="faq_question_txt"}</th>
-            <th class="tbl_col_active" scope="col">{tmpl_var name="faq_section_name_txt"}</th>
-            <th class="tbl_col_server_id" scope="col">{tmpl_var name="faq_delete_txt"}</th>
-            <th class="tbl_col_domain" scope="col">{tmpl_var name="faq_edit_txt"}</th>
-          </tr>
-	</thead>
-
-
-<tmpl_loop name="records">
-<tr>
-	<td>{tmpl_var name='hf_question'}</td>
-	<td>{tmpl_var name='hf_section'}</td>
-	<td>
-		<div class="buttons icons16">
-			<a class="icons16 icoDelete" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');">
-			<span>{tmpl_var name="faq_delete_txt"}</span></a> </div>
-	</td>
-	<td>
- 		<a href="#" onClick="loadContent('help/faq_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="faq_edit_txt"}</a>
-	</td>
-</tr>
-</tmpl_loop>
-
-
-</table>
-</fieldset>
-</div>
+    <div class="pnl_listarea">
+        <fieldset><legend><tmpl_var name="faq_sections_txt"></legend>
+            <table class="list">
+                <thead>
+                    <tr>
+                        <th class="tbl_col_active" scope="col">{tmpl_var name="faq_question_txt"}</th>
+                        <th class="tbl_col_active" scope="col">{tmpl_var name="faq_section_name_txt"}</th>
+                        <th class="tbl_col_server_id" scope="col">{tmpl_var name="faq_delete_txt"}</th>
+                        <th class="tbl_col_domain" scope="col">{tmpl_var name="faq_edit_txt"}</th>
+                    </tr>
+                </thead>
+                <tmpl_loop name="records">
+                    <tr>
+                        <td>{tmpl_var name='hf_question'}</td>
+                        <td>{tmpl_var name='hf_section'}</td>
+                        <td>
+                            <div class="buttons icons16">
+                                <a class="icons16 icoDelete" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');">
+                                    <span>{tmpl_var name="faq_delete_txt"}</span></a> </div>
+                        </td>
+                        <td>
+                            <a href="#" onClick="loadContent('help/faq_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="faq_edit_txt"}</a>
+                        </td>
+                    </tr>
+                </tmpl_loop>
+            </table>
+        </fieldset>
+    </div>
+    
 </div>
\ No newline at end of file

--
Gitblit v1.9.1