[wp-hackers] Tiny patch for plugins.php

Harish Narayanan harish.mlists at gmail.com
Sat Jun 6 13:38:38 GMT 2009


I've attached a tiny patch for wp-admin/plugins.php. This removes an
errant </p> which breaks xhtml validation and prevents my browser from
rendering the plugins page.

Perhaps someone else who's run into this issue will find it helpful.

Harish
-------------- next part --------------
Index: wp-admin/plugins.php
===================================================================
--- wp-admin/plugins.php	(revision 11526)
+++ wp-admin/plugins.php	(working copy)
@@ -436,7 +436,7 @@
 
 		$plugin_meta = apply_filters('plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $context);
 		echo implode(' | ', $plugin_meta);
-		echo "</p></td>
+		echo "</td>
 	</tr>\n";
 
 		do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );


More information about the wp-hackers mailing list