From 22362672cc60a2f8962b843eb9e83879c4cfa3e1 Mon Sep 17 00:00:00 2001
From: janw
Date: Fri, 30 Sep 2005 13:03:17 +0000
Subject: [PATCH] Fixed layout bug.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1451 594d385d-05f5-0310-b6e9-bd551577e9d8
---
ihtml/themes/default/setup_introduction.tpl | 5 ++---
include/functions_setup.inc | 10 +++++-----
2 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/ihtml/themes/default/setup_introduction.tpl b/ihtml/themes/default/setup_introduction.tpl
index 9d44eb472..acd23e036 100644
--- a/ihtml/themes/default/setup_introduction.tpl
+++ b/ihtml/themes/default/setup_introduction.tpl
@@ -13,9 +13,8 @@
- {t}You can also use the new and more-advanced way of inspecting your PHP-installation. It will give you information about the exact function that could not be found (functions that could be found are not mentioned). This is useful if you know what you're doing.
- {/t}
+
+ {t}You can also use the new and more-advanced way of inspecting your PHP-installation. It will give you information about the exact function that could not be found (functions that could be found are not mentioned). This is useful if you know what you're doing.{/t}
diff --git a/include/functions_setup.inc b/include/functions_setup.inc
index b27ff74ac..91fd12ccc 100644
--- a/include/functions_setup.inc
+++ b/include/functions_setup.inc
@@ -337,13 +337,13 @@ function perform_php_checks(&$faults)
}
function get_link($function_name) {
- $result= "http://de.php.net/manual/en/function.";
+ $result= "
$function_name";
return $result;
}
@@ -370,9 +370,9 @@ function perform_additional_function_checks(&$faults) {
/* Only print message, if function is not callable */
foreach($functions as $key => $fn_name) {
if(!is_callable($fn_name)) {
- $msg.= check ($faults, sprintf(_("Checking for function
%s"), get_link($fn_name), $fn_name),
- sprintf(_("The function
%s is used by GOsa. There is no information if it's optional or required yet."),get_link($fn_name),$fn_name),
- is_callable($fn_name), FALSE);
+ $msg.= check ($faults, sprintf(_("Checking for function
%s"), get_link($fn_name)),
+ sprintf(_("The function
%s is used by GOsa. There is no information if it's optional or required yet."),get_link($fn_name)),
+ is_callable($fn_name), false);
}
}
return $msg;
--
2.30.2