diff --git a/lib/Tracy/DoctrinePanel/DoctrinePanel.php b/lib/Tracy/DoctrinePanel/DoctrinePanel.php index d2eacf0a77..8541949d74 100644 --- a/lib/Tracy/DoctrinePanel/DoctrinePanel.php +++ b/lib/Tracy/DoctrinePanel/DoctrinePanel.php @@ -50,8 +50,8 @@ class DoctrinePanel implements IBarPanel { if (count($matches) >= 5) { // if SELECT clause over 50 chars, make it wrappable $select_html = mb_strlen($matches[2]) > 50 ? ($matches[1] . ' - ... -
' . $matches[2] . '
+ ... +
' . $matches[2] . '
') : ($matches[1] . $matches[2]); $from_keyword = $matches[3]; $rest = $matches[4];