Changes in trunk/wp-admin/plugin-editor.php [17183:18094]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugin-editor.php
r17183 r18094 120 120 ( is_network_admin() ? '<p>' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '</p>' : '' ) . 121 121 '<p><strong>' . __('For more information:') . '</strong></p>' . 122 '<p>' . __('<a href="http://codex.wordpress.org/Plugins_Editor_S ubPanel" target="_blank">Documentation on Editing Plugins</a>') . '</p>' .122 '<p>' . __('<a href="http://codex.wordpress.org/Plugins_Editor_Screen" target="_blank">Documentation on Editing Plugins</a>') . '</p>' . 123 123 '<p>' . __('<a href="http://codex.wordpress.org/Writing_a_Plugin" target="_blank">Documentation on Writing Plugins</a>') . '</p>' . 124 124 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' … … 216 216 } 217 217 ?> 218 <li<?php echo $file == $plugin_file ? ' class="highlight"' : ''; ?>><a href="plugin-editor.php?file=<?php echo $plugin_file; ?>&plugin=<?php echo $plugin;?>"><?php echo $plugin_file ?></a></li>218 <li<?php echo $file == $plugin_file ? ' class="highlight"' : ''; ?>><a href="plugin-editor.php?file=<?php echo urlencode( $plugin_file ) ?>&plugin=<?php echo urlencode( $plugin ) ?>"><?php echo $plugin_file ?></a></li> 219 219 <?php endforeach; ?> 220 220 </ul>
Note: See TracChangeset
for help on using the changeset viewer.