Merge branch 'bugfix/copy-paste-plugin-output-12134'

fixes #12134
This commit is contained in:
Eric Lippmann 2016-09-12 08:20:54 +02:00
commit 11edc55c78
1 changed files with 6 additions and 1 deletions

View File

@ -66,7 +66,12 @@ class Zend_View_Helper_PluginOutput extends Zend_View_Helper_Abstract
{
// This is actually not required as the value is constant,
// but as its (visual) length is 0, it's likely to be mixed up with the empty string.
$this->zeroWidthSpace = html_entity_decode($this->zeroWidthSpaceEnt, ENT_NOQUOTES, 'UTF-8');
$this->zeroWidthSpace = '<span style="visibility:hidden; display:none;">'
. html_entity_decode($this->zeroWidthSpaceEnt, ENT_NOQUOTES, 'UTF-8')
. '</span>';
$this->zeroWidthSpaceEnt = '<span style="visibility:hidden; display:none;">'
. $this->zeroWidthSpaceEnt
. '</span>';
}
/**