From c7f0b83c0da6f807f5859d5d666c1dfd009019b9 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 06 Nov 2012 10:11:11 -0500 Subject: [PATCH] Implemented: FS#2437 - iterate_query in dovecot-sql.conf is missing The query is added for reference and is commented out by default as it is not compatible with dovecot 1.2 and not required by ispconfig. --- interface/web/help/templates/faq_manage_questions_list.htm | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/interface/web/help/templates/faq_manage_questions_list.htm b/interface/web/help/templates/faq_manage_questions_list.htm index ad5d1f8..4907b73 100644 --- a/interface/web/help/templates/faq_manage_questions_list.htm +++ b/interface/web/help/templates/faq_manage_questions_list.htm @@ -17,20 +17,20 @@ <thead> <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> - <th class="tbl_col_domain" scope="col">{tmpl_var name="faq_edit_txt"}</th> + <th class="tbl_col_section_name" scope="col">{tmpl_var name="faq_section_name_txt"}</th> + <th class="tbl_col_buttons" scope="col">{tmpl_var name="faq_delete_txt"}</th> + <th class="tbl_col_buttons" scope="col">{tmpl_var name="faq_edit_txt"}</th> </tr> </thead> <tmpl_loop name="records"> - <tr> + <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> <td>{tmpl_var name='hf_question'}</td> <td>{tmpl_var name='hf_section'}</td> <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> + <td class="tbl_col_buttons"> + <a class="button icons16 icoEdit" href="javascript: loadContent('help/faq_edit.php?id={tmpl_var name='id'}');"><span>{tmpl_var name="faq_edit_txt"}</span></a> </td> </tr> </tmpl_loop> -- Gitblit v1.9.1