I upgraded from 2.0.8-pl to 2.1.1-pl (Traditional) and when saving Resources, the page would hang endlessly.
I tracked a line in a plugin (using the ’OnDocFormSave’ event):
$resource->setContent(strtr($resource->getContent(), $replacements));
So I replaced getContent with get(’content’)
$resource->setContent(strtr($resource->get('content'), $replacements));
And it solved the problem. But why is this causing a problem? It was working before, and the documentation says getContent is correct. Did this accidentally get depreciated?