From 113ff8c3b20172229f6401a8e14f3b57307ef73c Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 13 Jul 2010 04:49:14 -0400
Subject: [PATCH] Removed php-eaccelerator package from fedora installation guide. This package causes a open_basedir restriction error in mod_php as it is compiled with wrong settings. See also http://www.howtoforge.com/forums/showthread.php?t=44144&highlight=open_basedir
---
interface/web/help/lib/module.conf.php | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/interface/web/help/lib/module.conf.php b/interface/web/help/lib/module.conf.php
index 2fbbad5..8278aaa 100644
--- a/interface/web/help/lib/module.conf.php
+++ b/interface/web/help/lib/module.conf.php
@@ -24,12 +24,14 @@
//* Add a menu item with the label 'Send message'
$items[] = array( 'title' => 'Send message',
'target' => 'content',
- 'link' => 'help/support_message_edit.php');
+ 'link' => 'help/support_message_edit.php',
+ 'html_id' => 'help_message_send');
//* Add a menu item with the label 'View messages'
$items[] = array( 'title' => 'View messages',
'target' => 'content',
- 'link' => 'help/support_message_list.php');
+ 'link' => 'help/support_message_list.php',
+ 'html_id' => 'help_message_list');
//* Add the menu items defined above to a menu section labeled 'Support'
@@ -42,10 +44,11 @@
//* make sure that the items array is empty
$items = array();
-//* Add a menu item with the label 'View messages'
+//* Add a menu item with the label 'Version'
$items[] = array( 'title' => 'Version',
'target' => 'content',
- 'link' => 'help/version.php');
+ 'link' => 'help/version.php',
+ 'html_id' => 'help_version' );
//* Add the menu items defined above to a menu section labeled 'Support'
--
Gitblit v1.9.1