From ccb05fb19fe5af3570c2c57b703a595b1c78bf28 Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 21 Feb 2008 12:51:10 +0000 Subject: [PATCH] Updated printGeneric. -Only trigger ppd rename if the object wasn't newly created. -Only trigger ppd remove if the object wasn't newly created. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5-lhm@9015 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/systems/class_printGeneric.inc | 7 ++++--- plugins/admin/systems/class_printerPPDDialog.inc | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/admin/systems/class_printGeneric.inc b/plugins/admin/systems/class_printGeneric.inc index 9fd41e31b..a3a3f34a3 100644 --- a/plugins/admin/systems/class_printGeneric.inc +++ b/plugins/admin/systems/class_printGeneric.inc @@ -721,17 +721,18 @@ class printgeneric extends plugin if($this->PPDdialogToSave){ $this->PPDdialogToSave->save_ppd(); } - if($this->orig_dn != $this->dn){ + + if($this->orig_dn != $this->dn && $this->initially_was_account){ if(!empty($this->gotoPrinterPPD)) { $this->PPDdialogToSave = new printerPPDDialog($this->config, $this->dn,$this->gotoPrinterPPD); $this->PPDdialogToSave->cn = $this->cn; $this->PPDdialogToSave->generateProperties(); - $this->PPDdialogToSave->update_ppd_url(); + $this->gotoPrinterPPD = $this->PPDdialogToSave->update_ppd_url(); } } /* Remove previously selected ppd file.*/ - if($this->initial_PPD != $this->gotoPrinterPPD){ + if($this->initial_PPD != $this->gotoPrinterPPD && $this->initially_was_account){ if(!empty($this->initial_PPD)){ $tmp = new printerPPDDialog($this->config, $this->dn,$this->initial_PPD); $tmp->removeModifiedPPD(); diff --git a/plugins/admin/systems/class_printerPPDDialog.inc b/plugins/admin/systems/class_printerPPDDialog.inc index ac3aebc59..cf36067ae 100644 --- a/plugins/admin/systems/class_printerPPDDialog.inc +++ b/plugins/admin/systems/class_printerPPDDialog.inc @@ -491,6 +491,7 @@ class printerPPDDialog extends plugin function update_ppd_url() { $this->SelectPPD("modified/".$this->selectedPPD['link']); + return("modified/".$this->selectedPPD['link']); } function check() -- 2.30.2