From c3859c5257d42fd60185518609df52dfd65518b3 Mon Sep 17 00:00:00 2001
From: pedro_morgan <pedro_morgan@ispconfig3>
Date: Tue, 21 Aug 2007 15:02:42 -0400
Subject: [PATCH] Removing innecessary double quotes - speed
---
interface/web/help/support_message_del.php | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/interface/web/help/support_message_del.php b/interface/web/help/support_message_del.php
index 1ef035e..721197c 100644
--- a/interface/web/help/support_message_del.php
+++ b/interface/web/help/support_message_del.php
@@ -31,21 +31,21 @@
//* From and List definition files
-$list_def_file = "list/support_message.list.php";
-$tform_def_file = "form/support_message.tform.php";
+$list_def_file = 'list/support_message.list.php';
+$tform_def_file = 'form/support_message.tform.php';
//* Include the base libraries
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");
+if(!stristr($_SESSION['s']['user']['modules'], 'help')) {
+ header('Location: ../index.php');
exit;
}
//* Load the form
-$app->uses("tform_actions");
+$app->uses('tform_actions');
$app->tform_actions->onDelete();
?>
\ No newline at end of file
--
Gitblit v1.9.1