From 92ef465e9d8efaf304cd0116c8749c645efdea79 Mon Sep 17 00:00:00 2001 From: Anne-Cath Date: Mon, 1 Jun 2026 15:01:00 +0200 Subject: [PATCH] reduce changes --- application/cmdbabstract.class.inc.php | 29 -------------------------- 1 file changed, 29 deletions(-) diff --git a/application/cmdbabstract.class.inc.php b/application/cmdbabstract.class.inc.php index ae9bad369c..13756e5c07 100644 --- a/application/cmdbabstract.class.inc.php +++ b/application/cmdbabstract.class.inc.php @@ -3799,35 +3799,6 @@ HTML; return $aWriteableAttList; } - /** - * get the posted value or if not exists the existing value - * function added for use in GetAttributeFlags (to manage dynamic readonly attributes) - * this is used to get the current value display in screen - * @since 3.3.0 - * @param $sAttCode - */ - public function GetCurrentValueInScreen($sAttCode) - { - if (array_key_exists($sAttCode, $this->aPostedValues)) { - return $this->aPostedValues[$sAttCode]; - } - return $this->Get($sAttCode); - } - - /* - * checks if the value of the attribute has been modified in screen - * function added for use in GetAttributeFlags (useful to manage dynamic readonly attributes) - * @since 3.3.0 - * @param $sAttCode - */ - public function IsModifiedValueInScreen($sAttCode) - { - if (array_key_exists($sAttCode, $this->aPostedValues)) { - return $this->aPostedValues[$sAttCode] != $this->Get($sAttCode); - } - return false; - } - /** * Compute the attribute flags depending on the object state */