mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 09:35:00 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
1103324e89
|
@ -839,6 +839,14 @@ $(document).ready(function() {
|
|||
getMLText("creation_date")." (".getMLText('to').")",
|
||||
$this->getDateChooser(!empty($created['to']) ? getReadableDate($created['to']) : null, "created[to]", $this->params['session']->getLanguage())
|
||||
);
|
||||
$this->formField(
|
||||
getMLText("modification_date")." (".getMLText('from').")",
|
||||
$this->getDateChooser(!empty($modified['from']) ? getReadableDate($modified['from']) : null, "modified[from]", $this->params['session']->getLanguage())
|
||||
);
|
||||
$this->formField(
|
||||
getMLText("modification_date")." (".getMLText('to').")",
|
||||
$this->getDateChooser(!empty($modified['to']) ? getReadableDate($modified['to']) : null, "modified[to]", $this->params['session']->getLanguage())
|
||||
);
|
||||
if(!isset($facets['owner'])) {
|
||||
$options = array();
|
||||
foreach ($allUsers as $currUser) {
|
||||
|
@ -1316,7 +1324,7 @@ $(document).ready(function() {
|
|||
if($facetname == 'created')
|
||||
$this->printAccordion(getMLText('creation_date'), $content);
|
||||
elseif($facetname == 'modified') {
|
||||
// $this->printAccordion(getMLText('modification_date'), $content);
|
||||
$this->printAccordion(getMLText('modification_date'), $content);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue
Block a user