Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Better workaround:[CODE="diff"]--- a/src/XF/Html/Renderer/BbCode.php+++ b/src/XF/Html/Renderer/BbCode.php@@ -491,6 +491,12 @@ class BbCode */ public function renderCss(Tag $tag, $stringOutput) {+ // Workaround: https://xenforo.com/community/threads/unable-to-paste-from-spreadsheet.223298/+ if (preg_match('/^\[(th|td)/i', $stringOutput))+ {+ return $stringOutput;+ }+ $css = $tag->attribute('style'); if ($css) {[/CODE]
Better workaround:
[CODE="diff"]--- a/src/XF/Html/Renderer/BbCode.php
+++ b/src/XF/Html/Renderer/BbCode.php
@@ -491,6 +491,12 @@ class BbCode
*/
public function renderCss(Tag $tag, $stringOutput)
{
+ // Workaround: https://xenforo.com/community/threads/unable-to-paste-from-spreadsheet.223298/
+ if (preg_match('/^\[(th|td)/i', $stringOutput))
+ {
+ return $stringOutput;
+ }
+
$css = $tag->attribute('style');
if ($css)
{[/CODE]
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences