From b5162814731703530b89d9d7d3aac63dd2fd3cd5 Mon Sep 17 00:00:00 2001
From: Dominik Müller <info@profi-webdesign.com>
Date: Sat, 10 Jan 2015 11:32:58 -0500
Subject: [PATCH] changed filesize fields in backup-tables because of larger files (maximum was 9.9 GB) Fix for mailrestore, to avoid confusion about web- and mail-backups with same ids
---
interface/web/help/templates/help_faq_list.htm | 30 ++++++++++++------------------
1 files changed, 12 insertions(+), 18 deletions(-)
diff --git a/interface/web/help/templates/help_faq_list.htm b/interface/web/help/templates/help_faq_list.htm
index cba74d2..f5d7684 100644
--- a/interface/web/help/templates/help_faq_list.htm
+++ b/interface/web/help/templates/help_faq_list.htm
@@ -1,22 +1,16 @@
<tmpl_loop name="records">
- <h3>{tmpl_var name='hf_question'}
- </h3>
- <p>
- {tmpl_var name='hf_answer'}
- </p>
- <tmpl_if name='is_admin'>
-<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>Delete</span></a>
- </div>
-<a href="#" onClick="loadContent('help/faq_edit.php?id={tmpl_var name='id'}');">Edit</a>
- <br/>
- <br/>
- <br/>
- </tmpl_if>
-
+ <h3>{tmpl_var name='hf_question'}
+ </h3>
+ <p>
+ {tmpl_var name='hf_answer'}
+ </p>
+ <tmpl_if name='is_admin'>
+ <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>
+ <a href="#" data-load-content="help/faq_edit.php?id={tmpl_var name='id'}">{tmpl_var name="edit_txt"}</a>
+ <br/>
+ <br/>
+ <br/>
+ </tmpl_if>
</tmpl_loop>
<!--<tmpl_var name="paging">-->
--
Gitblit v1.9.1