Make WordPress Core

Changeset 9682


Ignore:
Timestamp:
11/14/2008 05:07:24 PM (16 years ago)
Author:
ryan
Message:

Plugin installer updates from DD32. fixes #7908

Location:
trunk
Files:
3 edited

Legend:

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

    r9314 r9682  
    123123}
    124124
     125#plugin-information .section ul,
     126#plugin-information .section ol {
     127    margin-left: 16px;
     128    list-style-type: square;
     129    list-style-image: none;
     130}
     131
    125132#plugin-information #section-screenshots li img {
    126133    vertical-align: text-top;
     
    137144    margin-right: 215px;
    138145}
     146
     147#plugin-information pre {
     148    padding: 7px;
     149}
  • trunk/wp-admin/includes/plugin-install.php

    r9668 r9682  
    384384                                'abbr' => array('title' => array()), 'acronym' => array('title' => array()),
    385385                                'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
    386                                 'div' => array(), 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array());
     386                                'div' => array(), 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
     387                                'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
     388                                'img' => array('src' => array(), 'class' => array(), 'alt' => array()));
    387389    //Sanitize HTML
    388390    foreach ( (array)$api->sections as $section_name => $content )
  • trunk/wp-includes/script-loader.php

    r9674 r9682  
    323323    $styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20080613' );
    324324    $styles->add( 'login', '/wp-admin/css/login.css' );
    325     $styles->add( 'plugin-install', '/wp-admin/css/plugin-install.css' );
     325    $styles->add( 'plugin-install', '/wp-admin/css/plugin-install.css', array(), '20081114' );
    326326    $styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.2' );
    327327
Note: See TracChangeset for help on using the changeset viewer.