1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

Fixes #4698 - Load front-end inline editing javasript only when necessary.

This commit is contained in:
Cameron 2022-03-10 11:08:27 -08:00
parent 7952e9188b
commit 2400c1ef09

View File

@ -849,7 +849,7 @@ class e_parse_shortcode
}
}
if(method_exists($this->addedCodes, 'editable'))
if($this->editableActive && method_exists($this->addedCodes, 'editable'))
{
$this->editableCodes = $this->addedCodes->editable();