107,111c107
< 		<?php 
< 			$colCount = 2;
< 			if ( current_user_can('edit_plugins') ) { $colCount = 3; }
< 			echo "		<th style=\"text-align: center;\" colspan=\"$colCount\">" . __('Action') . "</th>";
< 		?>
---
> 		<th style="text-align: center"<?php if ( current_user_can('edit_plugins') ) echo ' colspan="2"'; ?>><?php _e('Action'); ?></th>
142,149d137
< 			
< 		if ("" != $plugin_data['Options']) 
< 			if (!empty($current_plugins) && in_array($plugin_file, $current_plugins)) 
< 				$options = "<a href=\"{$plugin_data['Options']}\">Configure</a>";
< 			else
< 				$options = "<span style=\"color: gray;\" title=\"To access settings you must first activate this plugin\">Configure</span>";
< 		else
< 			$options = "";
156d143
< 		<td class='opt'>$options</td>
