Keep date on draft pages, bug fix for #1088

This commit is contained in:
Diego Najar 2019-10-05 21:22:34 +02:00
parent c5977fc0cb
commit 7dae1725bb
1 changed files with 2 additions and 5 deletions

View File

@ -232,11 +232,8 @@ class Pages extends dbJSON {
// This variable is not belong to the database so is not defined in $row
$newKey = $this->generateKey($slug, $parent, false, $key);
// If the page is draft then the created date is the current
if ($row['type']=='draft') {
$row['date'] = Date::current(DB_DATE_FORMAT);
} elseif (!Valid::date($row['date'], DB_DATE_FORMAT)) {
// if the date in the arguments is not valid, take the value from the old row
// if the date in the arguments is not valid, take the value from the old row
if (!Valid::date($row['date'], DB_DATE_FORMAT)) {
$row['date'] = $this->db[$key]['date'];
}