Fix stupid copy&paste error
This commit is contained in:
parent
9b6748c54d
commit
283873d89a
1 changed files with 6 additions and 5 deletions
|
@ -48,11 +48,6 @@ class Paste extends AbstractModel
|
||||||
$data->meta->remaining_time = $data->meta->expire_date - time();
|
$data->meta->remaining_time = $data->meta->expire_date - time();
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the paste was meant to be read only once, delete it.
|
|
||||||
if ($paste->isBurnafterreading()) {
|
|
||||||
$paste->delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
// set formatter for for the view.
|
// set formatter for for the view.
|
||||||
if (!property_exists($data->meta, 'formatter')) {
|
if (!property_exists($data->meta, 'formatter')) {
|
||||||
// support < 0.21 syntax highlighting
|
// support < 0.21 syntax highlighting
|
||||||
|
@ -72,6 +67,12 @@ class Paste extends AbstractModel
|
||||||
$data->comment_offset = 0;
|
$data->comment_offset = 0;
|
||||||
$data->{'@context'} = 'js/paste.jsonld';
|
$data->{'@context'} = 'js/paste.jsonld';
|
||||||
$this->_data = $data;
|
$this->_data = $data;
|
||||||
|
|
||||||
|
// If the paste was meant to be read only once, delete it.
|
||||||
|
if ($this->isBurnafterreading()) {
|
||||||
|
$this->delete();
|
||||||
|
}
|
||||||
|
|
||||||
return $this->_data;
|
return $this->_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue