From afee192d2a77afa1c11d25156d0a44df94e19aed Mon Sep 17 00:00:00 2001
From: A. Täffner <darkalex@firesplash.de>
Date: Sat, 23 Jan 2016 07:30:37 -0500
Subject: [PATCH] fixed the cronjob and noticed a bug in ISPC but not able to report as FlySpray is offline

---
 interface/web/help/faq_delete.php |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/interface/web/help/faq_delete.php b/interface/web/help/faq_delete.php
index 1dfc69f..e8f3627 100644
--- a/interface/web/help/faq_delete.php
+++ b/interface/web/help/faq_delete.php
@@ -1,17 +1,17 @@
 <?php
 
 // From and List definition files
-$list_def_file = 'list/faq_list.php';
+$list_def_file = 'list/faq_manage_questions_list.php';
 $tform_def_file = 'form/faq.tform.php';
 
 // Include the base libraries
-require_once('../../lib/config.inc.php');
-require_once('../../lib/app.inc.php');
+require_once '../../lib/config.inc.php';
+require_once '../../lib/app.inc.php';
 
 // Check module permissions
-if(!stristr($_SESSION['s']['user']['modules'],'help')) {
-    header('Location: ../index.php');
-    die;
+if(!stristr($_SESSION['s']['user']['modules'], 'help')) {
+	header('Location: ../index.php');
+	die;
 }
 
 // Load the form

--
Gitblit v1.9.1