Changeset 11109 for trunk/wp-admin/plugins.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r11055 r11109 140 140 <?php 141 141 foreach ( (array)$plugins as $plugin ) 142 echo '<input type="hidden" name="checked[]" value="' . attr ibute_escape($plugin) . '" />';142 echo '<input type="hidden" name="checked[]" value="' . attr($plugin) . '" />'; 143 143 ?> 144 144 <?php wp_nonce_field('bulk-manage-plugins') ?> … … 195 195 <?php 196 196 if ( wp_verify_nonce($_GET['_error_nonce'], 'plugin-activation-error_' . $plugin) ) { ?> 197 <iframe style="border:0" width="100%" height="70px" src="<?php echo admin_url('plugins.php?action=error_scrape&plugin=' . attr ibute_escape($plugin) . '&_wpnonce=' . attribute_escape($_GET['_error_nonce'])); ?>"></iframe>197 <iframe style="border:0" width="100%" height="70px" src="<?php echo admin_url('plugins.php?action=error_scrape&plugin=' . attr($plugin) . '&_wpnonce=' . attr($_GET['_error_nonce'])); ?>"></iframe> 198 198 <?php 199 199 } … … 370 370 echo " 371 371 <tr class='$class'> 372 <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . attr ibute_escape($plugin_file) . "' /></th>372 <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . attr($plugin_file) . "' /></th> 373 373 <td class='plugin-title'><strong>{$plugin_data['Title']}</strong>"; 374 374 $i = 0; … … 433 433 <form method="post" action="<?php echo admin_url('plugins.php') ?>"> 434 434 <?php wp_nonce_field('bulk-manage-plugins') ?> 435 <input type="hidden" name="plugin_status" value="<?php echo attr ibute_escape($status) ?>" />436 <input type="hidden" name="paged" value="<?php echo attr ibute_escape($page) ?>" />435 <input type="hidden" name="plugin_status" value="<?php echo attr($status) ?>" /> 436 <input type="hidden" name="paged" value="<?php echo attr($page) ?>" /> 437 437 438 438 <ul class="subsubsub">
Note: See TracChangeset
for help on using the changeset viewer.