Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2423 from splitbrain/fixDraftException
🐛 (Draft) Fix exception when actually viewing a draft of a page
  • Loading branch information
splitbrain committed Jun 15, 2018
2 parents 69a81ab + 520438b commit e954c88
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions inc/Draft.php
Expand Up @@ -152,4 +152,14 @@ public function getErrors()
{
return $this->errors;
}

/**
* Get the timestamp when this draft was saved
*
* @return int
*/
public function getDraftDate()
{
return filemtime($this->cname);
}
}
4 changes: 2 additions & 2 deletions inc/html.php
Expand Up @@ -314,10 +314,10 @@ function html_draft(){
html_diff($text, false);
$form = new Doku_Form(array('id' => 'dw__editform'));
$form->addHidden('id', $ID);
$form->addHidden('date', $draft['date']);
$form->addHidden('date', $draft->getDraftDate());
$form->addHidden('wikitext', $text);
$form->addElement(form_makeOpenTag('div', array('id'=>'draft__status')));
$form->addElement($lang['draftdate'].' '. dformat(filemtime($INFO['draft'])));
$form->addElement($draft->getDraftMessage());
$form->addElement(form_makeCloseTag('div'));
$form->addElement(form_makeButton('submit', 'recover', $lang['btn_recover'], array('tabindex'=>'1')));
$form->addElement(form_makeButton('submit', 'draftdel', $lang['btn_draftdel'], array('tabindex'=>'2')));
Expand Down

0 comments on commit e954c88

Please sign in to comment.