From f4f981d8f98e4f74a8d69d05a31ab63e188ea808 Mon Sep 17 00:00:00 2001
From: Till Brehm <tbrehm@ispconfig.org>
Date: Sun, 15 Nov 2015 08:00:17 -0500
Subject: [PATCH] Added missing delimiter settings in reseller form file.

---
 interface/web/help/templates/faq_manage_questions_list.htm |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/interface/web/help/templates/faq_manage_questions_list.htm b/interface/web/help/templates/faq_manage_questions_list.htm
index 2de35d2..7659d39 100644
--- a/interface/web/help/templates/faq_manage_questions_list.htm
+++ b/interface/web/help/templates/faq_manage_questions_list.htm
@@ -1,21 +1,21 @@
 <h2>{tmpl_var name="faq_faq_questions_txt"}</h2>
 
-        <p>{tmpl_var name="toolsarea_head_txt"}</p>
+        <p class="fieldset-legend">{tmpl_var name="toolsarea_head_txt"}</p>
             
                 <button class="btn btn-default formbutton-success" type="button" data-load-content="help/faq_edit.php">{tmpl_var name="faq_new_question_txt"}</button>
             
         
 
     
-        <p><tmpl_var name="faq_sections_txt"></p>
+        <p class="fieldset-legend"><tmpl_var name="faq_sections_txt"></p>
             <div class="table-wrapper marginTop15">
 <table class="table">
                 <thead class="dark form-group-sm">
                     <tr>
                         <th class="tiny-col">{tmpl_var name="faq_question_txt"}</th>
                         <th>{tmpl_var name="faq_section_name_txt"}</th>
-                        <th>{tmpl_var name="faq_delete_txt"}</th>
-                        <th>{tmpl_var name="faq_edit_txt"}</th>
+                        <th class="text-right">{tmpl_var name="faq_delete_txt"}</th>
+                        <th class="text-right">{tmpl_var name="faq_edit_txt"}</th>
                     </tr>
                 </thead>
 				<tbody>
@@ -23,11 +23,11 @@
                     <tr>
                         <td width="60%">{tmpl_var name='hf_question'}</td>
                         <td width="30%">{tmpl_var name='hf_section'}</td>
-                        <td width="5%">
-                            <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span class="icon icon-delete"></span></button>
+                        <td class="text-right" width="5%">
+                            <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: ISPConfig.confirm_action('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span class="icon icon-delete"></span></a>
                         </td>
-                        <td width="5%">
-                            <a class="btn btn-default formbutton-default formbutton-narrow" data-load-content="help/faq_edit.php?id={tmpl_var name='id'}"><span class="icon icon-edit"></span></button>
+                        <td class="text-right" width="5%">
+                            <a class="btn btn-default formbutton-default formbutton-narrow" data-load-content="help/faq_edit.php?id={tmpl_var name='id'}"><span class="icon icon-edit"></span></a>
                         </td>
                     </tr>
                 </tmpl_loop>

--
Gitblit v1.9.1