]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/edit-post-rows.php
Wordpress 3.1
[autoinstalls/wordpress.git] / wp-admin / edit-post-rows.php
diff --git a/wp-admin/edit-post-rows.php b/wp-admin/edit-post-rows.php
deleted file mode 100644 (file)
index 2bf8841..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
- * Edit posts rows table for inclusion in administration panels.
- *
- * @package WordPress
- * @subpackage Administration
- */
-
-// don't load directly
-if ( !defined('ABSPATH') )
-       die('-1');
-?>
-<table class="widefat <?php echo $post_type_object->hierarchical ? 'page' : 'post'; ?> fixed" cellspacing="0">
-       <thead>
-       <tr>
-<?php print_column_headers( $current_screen ); ?>
-       </tr>
-       </thead>
-
-       <tfoot>
-       <tr>
-<?php print_column_headers($current_screen, false); ?>
-       </tr>
-       </tfoot>
-
-       <tbody>
-<?php
-if ( $post_type_object->hierarchical )
-       page_rows($posts, $pagenum, $per_page);
-else
-       post_rows();
-?>
-       </tbody>
-</table>
\ No newline at end of file