From fdced29e0a2b5230d0cde0e762a6c27de61cbec0 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Thu, 21 Aug 2008 05:52:03 +0000 Subject: [PATCH] Fix Edit Page link git-svn-id: http://svn.automattic.com/wordpress/trunk@8699 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 4e71aa8311..2e6f99d0e4 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -468,6 +468,7 @@ foreach ($posts_columns as $column_name=>$column_display_name) { ID ); ?> ID ) ) { ?>"> $column_display_name) { the_excerpt(); $actions = array(); - $actions['edit'] = '' . __('Edit') . ''; + $actions['edit'] = '' . __('Edit') . ''; $actions['delete'] = "ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $page->post_status) ? __("You are about to delete this draft '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this page '%s'\n 'Cancel' to stop, 'OK' to delete."), $page->post_title )) . "') ) { return true;}return false;\">" . __('Delete') . ""; $action_count = count($actions); $i = 0;