Code

Fixed layout bug.
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Sep 2005 13:03:17 +0000 (13:03 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Sep 2005 13:03:17 +0000 (13:03 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1451 594d385d-05f5-0310-b6e9-bd551577e9d8

ihtml/themes/default/setup_introduction.tpl
include/functions_setup.inc

index 9d44eb4724ceb14b6b54ca7ce2f4f8eff745c972..acd23e036b79a970ba7e4ce636228b2e17424f80 100644 (file)
@@ -13,9 +13,8 @@
 </p>
 
 <p class="seperator">&nbsp;</p>
-<p>
- {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}
+<p style="width:90%;">
+ {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}
 </p>
 <button type='button' onClick='toggle("functionbox")'>{t}Toggle Show/Hide{/t}</button>
 <div id='functionbox' style='background-color:#ffffff;position:absolute; z-index:0; visibility:hidden'>
index b27ff74ac877434b2a9a88010b1b8a8ac101b26d..91fd12ccc4ebfbaf52cb145a2f95be34ecb7f999 100644 (file)
@@ -337,13 +337,13 @@ function perform_php_checks(&$faults)
 }
 
 function get_link($function_name) {
-  $result= "http://de.php.net/manual/en/function.";
+  $result= "<a href='http://de.php.net/manual/en/function.";
 
   /* Replace all underscores with hyphens (phpdoc convention) */
   $function_name= str_replace("_", "-", $function_name);
 
   /* Append to base URL */
-  $result.= $function_name.'.php';
+  $result.= $function_name.".php'>$function_name</a>";
 
   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 <b><a href='%s' target='_blank'>%s</a></b>"), get_link($fn_name), $fn_name),
-        sprintf(_("The function <b><a href='%s' target='_blank'>%s</a></b> 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 <b>%s</b>"), get_link($fn_name)),
+        sprintf(_("The function <b>%s</b> 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;