Code

Reverted plugin changes
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 5 Dec 2007 10:17:53 +0000 (10:17 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 5 Dec 2007 10:17:53 +0000 (10:17 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8006 594d385d-05f5-0310-b6e9-bd551577e9d8

include/class_plugin.inc

index 528de883ff48e7046125bc6fe0847a81867a1759..b71e576ca9b205b107d7e07509c0d45aefa6d54d 100644 (file)
@@ -118,8 +118,6 @@ class plugin
   /* This can be set to render the tabulators in another stylesheet */
   var $pl_notify= FALSE;
 
-  /* The entries CSN value, if available */
-  var $entryCSN = "";
 
   /* This variable indicates that this class can handle multiple dns at once. */
   var $multiple_support = FALSE; 
@@ -153,13 +151,6 @@ class plugin
     $ldap= $this->config->get_ldap_link();
     if ($dn !== NULL){
 
-      /* Try to get entry CSN for save checks later */
-      $ldap->cat($dn,array("entryCSN"));
-      $csn = $ldap->fetch();
-      if(isset($csn['entryCSN'][0])){
-        $this->entryCSN = $csn['entryCSN'][0];
-      }
-
       /* Load data to 'attrs' and save 'dn' */
       if ($parent !== NULL){
         $this->attrs= $parent->attrs;
@@ -486,15 +477,6 @@ class plugin
 
     }
 
-    /* Check if entry CSN has changed */
-    $ldap = $this->config->get_ldap_link();
-    $ldap->cat($this->dn,array("entryCSN"));
-    $csn = $ldap->fetch();
-    if(isset($csn['entryCSN'][0]) && !empty($this->entryCSN) && $this->entryCSN != $csn['entryCSN'][0]){
-      $this->entryCSN = $csn['entryCSN'][0];
-      $message[] = _("The object has changed since opened in GOsa. Please ensure that nobody has done serious changes that may get lost if you save this entry.");
-    }
-
     return ($message);
   }