support < 0.21 syntax highlighting

pull/17/head
El RIDO 9 years ago
parent 106141efa4
commit ec8851e46c

@ -589,7 +589,15 @@ class zerobin
// set formatter for for the view.
if (!property_exists($paste->meta, 'formatter'))
{
$paste->meta->formatter = $this->_getMainConfig('defaultformatter', 'syntaxhighlighting');
// support < 0.21 syntax highlighting
if (property_exists($paste->meta, 'syntaxcoloring') && $paste->meta->syntaxcoloring === true)
{
$paste->meta->formatter = 'syntaxhighlighting';
}
else
{
$paste->meta->formatter = $this->_getMainConfig('defaultformatter', 'syntaxhighlighting');
}
}
$this->_data = json_encode($messages);

Loading…
Cancel
Save