From bfc22ec9af89c240cbce16c1f8abb17547cd4b3d Mon Sep 17 00:00:00 2001
From: xaver <xaver@ispconfig3>
Date: Wed, 14 Sep 2011 15:08:09 -0400
Subject: [PATCH] fixed icon in middle vertical, for opera table th align right
---
interface/web/capp.php | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/interface/web/capp.php b/interface/web/capp.php
index 8a5ff6e..39b2744 100644
--- a/interface/web/capp.php
+++ b/interface/web/capp.php
@@ -31,21 +31,21 @@
require_once('../lib/config.inc.php');
require_once('../lib/app.inc.php');
-// importiere Modul
+//* Import module variable
$mod = $_REQUEST["mod"];
-// Checke ob User eingeloggt
+//* Check if user is logged in
if($_SESSION["s"]["user"]['active'] != 1) {
header("Location: index.php?phpsessid=".$_SESSION["s"]["id"]);
die();
}
-// checke ob User Modul verwenden darf
+//* Check if user may use the module.
$user_modules = explode(",",$_SESSION["s"]["user"]["modules"]);
if(!in_array($mod,$user_modules)) $app->error($app->lng(301));
-// lade Moduldaten in Session
+//* Load module configuration into the session.
if(is_file($mod."/lib/module.conf.php")) {
include_once($mod."/lib/module.conf.php");
$_SESSION["s"]["module"] = $module;
--
Gitblit v1.9.1