mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
Fix #1363 : Fix status selection display in advanced search
This commit is contained in:
@@ -96,8 +96,8 @@ class databox_status
|
||||
}
|
||||
|
||||
foreach ($app['locales.I18n.available'] as $code => $language) {
|
||||
$this->status[$bit]['labels_on_i18n'][$code] = isset($this->status[$bit]['labels_on'][$code]) ? $this->status[$bit]['labels_on'][$code] : $this->status[$bit]["labelon"];
|
||||
$this->status[$bit]['labels_off_i18n'][$code] = isset($this->status[$bit]['labels_off'][$code]) ? $this->status[$bit]['labels_off'][$code] : $this->status[$bit]["labeloff"];
|
||||
$this->status[$bit]['labels_on_i18n'][$code] = '' !== trim($this->status[$bit]['labels_on'][$code]) ? $this->status[$bit]['labels_on'][$code] : $this->status[$bit]["labelon"];
|
||||
$this->status[$bit]['labels_off_i18n'][$code] = '' !== trim($this->status[$bit]['labels_off'][$code]) ? $this->status[$bit]['labels_off'][$code] : $this->status[$bit]["labeloff"];
|
||||
}
|
||||
|
||||
$this->status[$bit]["img_off"] = null;
|
||||
|
@@ -1139,6 +1139,10 @@ form.phrasea_query input.query {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#searchForm .danger label {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#adv_search table.colllist {
|
||||
width: 290px;
|
||||
}
|
||||
|
Reference in New Issue
Block a user