diff --git a/application/cmdbabstract.class.inc.php b/application/cmdbabstract.class.inc.php
index 4ba470e8f..b241cbe97 100644
--- a/application/cmdbabstract.class.inc.php
+++ b/application/cmdbabstract.class.inc.php
@@ -1029,6 +1029,10 @@ abstract class cmdbAbstractObject extends CMDBObject
{
// too many choices, use an autocomplete
// The input for the auto complete
+ if ($sDisplayValue == $oAttDef->GetNullValue()) // Null or zero is displayed as ''
+ {
+ $sDisplayValue = '';
+ }
$sHTMLValue = " {$sValidationField}";
// another hidden input to store & pass the object's Id
$sHTMLValue .= "\n";
diff --git a/css/light-grey.css b/css/light-grey.css
index 5c6413a0f..d39ce73da 100644
--- a/css/light-grey.css
+++ b/css/light-grey.css
@@ -205,7 +205,7 @@ input.textSearch {
.ac_input {
border: 1px solid #7f9db9;
- background: url(../images/ac-background.gif) no-repeat right;
+ background: #fff url(../images/ac-background.gif) no-repeat right;
}
/* By Rom */