- {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;