Make WordPress Core

Ticket #5607: remove_admin_notices15.diff

File remove_admin_notices15.diff, 1.7 KB (added by filosofo, 17 years ago)
  • wp-admin/link-manager.php

     
    129129                        $short_url = substr($short_url, 0, 32).'...';
    130130
    131131                $visible = ($link->link_visible == 'Y') ? __('Yes') : __('No');
    132                 ++ $i;
     132                if ( isset($i) )
     133                        ++ $i;
     134                else
     135                        $i = 1;
    133136                $style = ($i % 2) ? '' : ' class="alternate"';
    134137                ?><tr id="link-<?php echo $link->link_id; ?>" valign="middle" <?php echo $style; ?>><?php
    135138                foreach($link_columns as $column_name=>$column_display_name) {
  • wp-admin/plugin-editor.php

     
    5555        if ( !current_user_can('edit_plugins') )
    5656                wp_die('<p>'.__('You do not have sufficient permissions to edit plugins for this blog.').'</p>');
    5757
    58         if ( $_GET['liveupdate'] ) {
     58        if ( ! empty($_GET['liveupdate']) ) {
    5959                check_admin_referer('edit-plugin-test_' . $file);
    6060                $current = get_option('active_plugins');
    6161                $plugin = $file;
  • wp-admin/edit-pages.php

     
    4141
    4242<form name="searchform" id="searchform" action="" method="get">
    4343        <fieldset><legend><?php _e('Search Terms&hellip;') ?></legend>
    44                 <input type="text" name="s" id="s" value="<?php echo attribute_escape( stripslashes( $_GET['s'] ) ); ?>" size="17" />
     44                <input type="text" name="s" id="s" value="<?php echo ( isset($_GET['s']) ) ? attribute_escape( stripslashes( $_GET['s'] ) ) : ''; ?>" size="17" />
    4545        </fieldset>
    4646
    4747