commit 4e884e71043655d014f56c709b3049e6802f5af4
Author: naught101 <naught101@44216.no-reply.drupal.org>
Date:   Tue Apr 30 16:00:46 2013 +1000

    Issue #1587862 by pbrough: Fixed Empty view not empty.
    
    Conflicts:
    	views-flipped-table.tpl.php

diff --git a/views-flipped-table.tpl.php b/views-flipped-table.tpl.php
index 88bb624..99b10b1 100644
--- a/views-flipped-table.tpl.php
+++ b/views-flipped-table.tpl.php
@@ -26,6 +26,7 @@
   $first = isset($row['title']);
   $element = 'odd';
 ?>
+<?php if (!empty($row)) : // Test to see if rows contain any data ?>
 <table class="<?php print $classes; ?>">
   <?php if (!empty($title)) : ?>
     <caption><?php print $title; ?></caption>
@@ -72,4 +73,5 @@
     <?php endforeach; ?>
   </tbody>
 </table>
+<?php endif;  // field != row ?>
 
