From 7ea3df9a2c436e6ab87756c52cd8548c50baa63e Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 08 Jan 2008 10:36:13 -0500
Subject: [PATCH] Fixed a error with the symlink creation during update.
---
interface/web/help/support_message_list.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/interface/web/help/support_message_list.php b/interface/web/help/support_message_list.php
index 5fc45e5..ce990e4 100644
--- a/interface/web/help/support_message_list.php
+++ b/interface/web/help/support_message_list.php
@@ -6,8 +6,8 @@
$list_def_file = "list/support_message.list.php";
//* Check the module permissions
-if(!stristr($_SESSION["s"]["user"]["modules"],'help')) {
- header("Location: ../index.php");
+if(!stristr($_SESSION['s']['user']["modules"], 'help')) {
+ header('Location: ../index.php');
exit;
}
--
Gitblit v1.9.1