From 75bde1b8b1d46a2a5e5c20d1c22d362b2b8510dd Mon Sep 17 00:00:00 2001
From: wyrie <wyrie@ispconfig3>
Date: Mon, 11 Oct 2010 04:55:12 -0400
Subject: [PATCH] Helper script   Bug fix updated layman path • Bug fix include soap flag when installing php for web • Bug fix use flags duplicated in is_package_installed • Bug fix checking for mysql emerged line 543 • Bug fix substring match for quota package • Improved use flag detection • Moved layman install to meta_web as it's only required for jailkit • Added prompt for courier or dovecot • Added baselayout check • Added apache module checks and configuration • Added packages awstats & mod_ruby

---
 interface/web/designer/module_edit.php |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/interface/web/designer/module_edit.php b/interface/web/designer/module_edit.php
index f1a9ad7..26e229a 100644
--- a/interface/web/designer/module_edit.php
+++ b/interface/web/designer/module_edit.php
@@ -31,12 +31,10 @@
 require_once('../../lib/app.inc.php');
 
 if($_SESSION["s"]["user"]["typ"] != "admin") die("Admin permissions required.");
+if($conf['demo_mode'] == true) $app->error('This function is disabled in demo mode.');
 
-// Checke Berechtigungen f�r Modul
-if(!stristr($_SESSION["s"]["user"]["modules"],$_SESSION["s"]["module"]["name"])) {
-	header("Location: ../index.php");
-	exit;
-}
+//* Check permissions for module
+$app->auth->check_module_permissions('designer');
 
 // Lade Template
 $app->uses('tpl');

--
Gitblit v1.9.1