You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by jo...@apache.org on 2011/07/04 21:19:44 UTC

svn commit: r1142770 - /incubator/ooo/site/trunk/lib/view.pm

Author: joes
Date: Mon Jul  4 19:19:44 2011
New Revision: 1142770

URL: http://svn.apache.org/viewvc?rev=1142770&view=rev
Log:
bug

Modified:
    incubator/ooo/site/trunk/lib/view.pm

Modified: incubator/ooo/site/trunk/lib/view.pm
URL: http://svn.apache.org/viewvc/incubator/ooo/site/trunk/lib/view.pm?rev=1142770&r1=1142769&r2=1142770&view=diff
==============================================================================
--- incubator/ooo/site/trunk/lib/view.pm (original)
+++ incubator/ooo/site/trunk/lib/view.pm Mon Jul  4 19:19:44 2011
@@ -187,7 +187,7 @@ sub sort_tables {
     my @out;
     while (defined(local $_ = shift @orig))  {
         push @out, $_;
-        /^(\|[v^-]+)+\|)$/ or next;
+        /^(\|[v^-])+\|$/ or next;
         my($col, $direction, $cur);
         $cur = 0;
         while (/\G\|([v^-])+/g) {