From ecb6b3a8035679f652ed0d80ca624d8a0c6c57f1 Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Wed, 22 Aug 2012 14:13:12 -0400
Subject: [PATCH] - Added database, database_user and vhost subdomain functions to the remoting - Added interface plugins for db and db users - changed remoting (splitted up insert, update and deletequery)

---
 interface/web/themes/default-v2/templates/help/faq_manage_questions_list.htm |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/interface/web/themes/default-v2/templates/help/faq_manage_questions_list.htm b/interface/web/themes/default-v2/templates/help/faq_manage_questions_list.htm
index c045dfb..ad5d1f8 100644
--- a/interface/web/themes/default-v2/templates/help/faq_manage_questions_list.htm
+++ b/interface/web/themes/default-v2/templates/help/faq_manage_questions_list.htm
@@ -4,7 +4,7 @@
     <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');">
+                <button class="button iconstxt icoAdd" type="button" onclick="loadContent('help/faq_edit.php');">
                     <span>{tmpl_var name="faq_new_question_txt"}</span>
                 </button>
             </div>
@@ -15,7 +15,7 @@
         <fieldset><legend><tmpl_var name="faq_sections_txt"></legend>
             <table class="list">
                 <thead>
-                    <tr>
+                    <tr class="caption">
                         <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>
@@ -26,10 +26,8 @@
                     <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 class="tbl_col_buttons">
+                            <a class="button 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>
                         </td>
                         <td>
                             <a href="#" onClick="loadContent('help/faq_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="faq_edit_txt"}</a>

--
Gitblit v1.9.1