Code

Remove lock - if forced by "Locking dialog"
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Dec 2008 10:10:05 +0000 (10:10 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Dec 2008 10:10:05 +0000 (10:10 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13278 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/main.php

index a95c09367bcdf6ae9ea4478de44ab28303320f2e..2cb0440db76923006b4e9164110c4fe4ac87af26 100644 (file)
@@ -196,10 +196,12 @@ if (isset($_GET['plug']) && $plist->plugin_access_allowed($_GET['plug'])){
 }
 
 /* Check if we need to delete a lock */
-if ($old_plugin_dir != $plugin_dir && $old_plugin_dir != ""){
+if ($old_plugin_dir != $plugin_dir && $old_plugin_dir != "" || isset($_POST['delete_lock'])){
   if (is_file("$old_plugin_dir/main.inc")){
     $remove_lock= true;
+    $display = "";
     require_once ("$old_plugin_dir/main.inc");
+    $display = "";
   }
 }
 $remove_lock= false;