Make WordPress Core


Ignore:
Timestamp:
05/07/2004 11:56:33 PM (22 years ago)
Author:
saxmatt
Message:

E_ALL fixes and cleanups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/plugins.php

    r1173 r1239  
    4747?>
    4848
    49 <?php if ($_GET['activate']) : ?>
     49<?php if (isset($_GET['activate'])) : ?>
    5050<div class="updated"><p><?php _e('Plugin <strong>activated</strong>.') ?></p>
    5151</div>
    5252<?php endif; ?>
    53 <?php if ($_GET['deactivate']) : ?>
     53<?php if (isset($_GET['deactivate'])) : ?>
    5454<div class="updated"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p>
    5555</div>
     
    8787<?php
    8888        sort($plugin_files); // Alphabetize by filename. Better way?
     89        $style = '';
    8990        foreach($plugin_files as $plugin_file) {
    9091                $plugin_data = implode('', file(ABSPATH . '/wp-content/plugins/' . $plugin_file));
     
    9495                preg_match("|Author:(.*)|i", $plugin_data, $author_name);
    9596                preg_match("|Author URI:(.*)|i", $plugin_data, $author_uri);
    96                 preg_match("|Version:(.*)|i", $plugin_data, $version);
    97                 $description = wptexturize(wp_filter_kses($description[1]));
     97                if ( preg_match("|Version:(.*)|i", $plugin_data, $version) )
     98                        $version = $version[1];
     99                else
     100                        $version ='';
     101
     102                $description = wptexturize($description[1]);
    98103
    99104                if ('' == $plugin_uri) {
    100105                        $plugin = $plugin_name[1];
    101106                } else {
    102                         $plugin = wp_filter_kses( __("<a href='{$plugin_uri[1]}' title='Visit plugin homepage'>{$plugin_name[1]}</a>") );
     107                        $plugin = __("<a href='{$plugin_uri[1]}' title='Visit plugin homepage'>{$plugin_name[1]}</a>");
    103108                }
    104109
     
    106111                        $author = $author_name[1];
    107112                } else {
    108                         $author = wp_filter_kses( __("<a href='{$author_uri[1]}' title='Visit author homepage'>{$author_name[1]}</a>") );
     113                        $author = __("<a href='{$author_uri[1]}' title='Visit author homepage'>{$author_name[1]}</a>");
    109114                }
    110115
     
    122127        <tr $style>
    123128                <td>$plugin</td>
    124                 <td>{$version[1]}</td>
     129                <td>$version</td>
    125130                <td>$author</td>
    126131                <td>$description</td>
     
    137142
    138143<?php
    139 
    140144include('admin-footer.php');
    141145?>
Note: See TracChangeset for help on using the changeset viewer.