Make WordPress Core

Changeset 9150


Ignore:
Timestamp:
10/14/2008 01:33:27 AM (16 years ago)
Author:
matt
Message:

Unsquish text so it doesn't run into each other.

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin-install.php

    r9141 r9150  
    581581                            ), $plugin_information, $plugin_file);
    582582        if ( ! empty($install_actions) )
    583             show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$install_actions));
     583            show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
    584584    }
    585585}
     
    637637                            ), $plugin_information, $plugin_file);
    638638        if ( ! empty($install_actions) )
    639             show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$install_actions));
     639            show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$install_actions));
    640640    }
    641641}
  • trunk/wp-admin/update.php

    r9141 r9150  
    6767        $update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $plugin_file);
    6868        if ( ! empty($update_actions) )
    69             show_message('<strong>' . __('Actions:') . '</strong>' . implode(' | ', (array)$update_actions));
     69            show_message('<strong>' . __('Actions:') . '</strong> ' . implode(' | ', (array)$update_actions));
    7070    }
    7171    echo '</div>';
Note: See TracChangeset for help on using the changeset viewer.