From: hickert Date: Wed, 13 Dec 2006 05:55:22 +0000 (+0000) Subject: Fixed w3c problems, and found a DOCTYPE that supports scrollTop attribute in JS.- X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e1caeaac864e3118ac900e3fc2d697bd88da1326;p=gosa.git Fixed w3c problems, and found a DOCTYPE that supports scrollTop attribute in JS.- Used a HTML 2 DOCTYPE to it working again- git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5367 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/systems/class_systemManagement.inc b/plugins/admin/systems/class_systemManagement.inc index 11229d536..25b8bd30d 100644 --- a/plugins/admin/systems/class_systemManagement.inc +++ b/plugins/admin/systems/class_systemManagement.inc @@ -239,7 +239,7 @@ class systems extends plugin if ($this->dn != "" && isset($_GET['PerformIsoCreation'])){ - $return_button = "
+ $return_button = "
"; @@ -252,16 +252,15 @@ class systems extends plugin @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute"); /* Print out html introduction */ - echo ' - '; - echo ""; - echo ""; - echo " - -
";
+        echo '  
+                
+                  
+                    
+                    
+                    
+                  
+                  
+                  
';
 
         /* Open process handle and check if it is a valid process */
         $process= proc_open($command, $dsc, $pipes);
@@ -272,7 +271,7 @@ class systems extends plugin
           while (!feof($pipes[1])){
             $cur_dat = fgets($pipes[1], 1024);
             echo $cur_dat;
-            echo "" ;
+            echo '' ;
             flush();
           }
         }
@@ -302,8 +301,8 @@ class systems extends plugin
       }
 
       /* Scroll down completly */
-      echo "" ;
-      echo "";
+      echo '' ;
+      echo '';
       flush();
       exit;
     }