Code

Updated main
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Dec 2008 13:16:52 +0000 (13:16 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Dec 2008 13:16:52 +0000 (13:16 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13286 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/main.php

index a5d9c2a7491ff45b55df92e0a46cf8e13719ae30..f79abdad78f17771dc96a4533e967f9b21aa9494 100644 (file)
@@ -197,21 +197,22 @@ if (isset($_GET['plug']) && $plist->plugin_access_allowed($_GET['plug'])){
 
 /* Check if we need to delete a lock */
 $cleanup = FALSE;
+$remove_lock= FALSE;
 if ($old_plugin_dir != $plugin_dir && $old_plugin_dir != "" || isset($_POST['delete_lock'])){
   if (is_file("$old_plugin_dir/main.inc")){
     if(isset($_POST['delete_lock'])){
-      $remove_lock= true;
+      $remove_lock= TRUE;
     }
     if($old_plugin_dir != $plugin_dir && $old_plugin_dir != ""){
-      $cleanup= true;
+      $cleanup= TRUE;
     }
     $display = "";
     require_once ("$old_plugin_dir/main.inc");
     $display = "";
   }
 }
-$remove_lock= false;
-$cleanup= false;
+$remove_lock= FALSE;
+$cleanup= FALSE;
 
 /* Check for sizelimits */
 eval_sizelimit();