Make WordPress Core

Changeset 1015


Ignore:
Timestamp:
03/25/2004 09:04:36 PM (23 years ago)
Author:
saxmatt
Message:

Show version and header bugfix.

File:
1 edited

Legend:

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

    r1010 r1015  
    11<?php
     2
     3if ($_GET['action']) {
     4        $standalone = 1;
     5        require_once('admin-header.php');
     6        if ('activate' == $_GET['action']) {
     7                $current = "\n" . get_settings('active_plugins') . "\n";
     8                $current = preg_replace("|(\n)+\s*|", "\n", $current);
     9                $current = trim($current) . "\n " . trim($_GET['plugin']);
     10                $current = trim($current);
     11                $current = preg_replace('|\n\s*|', '\n', $current); // I don't know where this is coming from
     12                update_option('active_plugins', $current);
     13                header('Location: plugins.php');
     14        }
     15       
     16        if ('deactivate' == $_GET['action']) {
     17                $current = "\n" . get_settings('active_plugins') . "\n";
     18                $current = str_replace("\n" . $_GET['plugin'], '', $current);
     19                $current = preg_replace("|(\n)+\s*|", "\n", $current);
     20                update_option('active_plugins', trim($current));
     21                header('Location: plugins.php');
     22        }
     23}
     24
    225$title = 'Manage Plugins';
    3 
    426require_once('admin-header.php');
    527
     
    2143
    2244
    23 if ('activate' == $_GET['action']) {
    24         $current = "\n" . get_settings('active_plugins') . "\n";
    25         $current = preg_replace("|(\n)+\s*|", "\n", $current);
    26         $current = trim($current) . "\n " . trim($_GET['plugin']);
    27         $current = trim($current);
    28         $current = preg_replace('|\n\s*|', '\n', $current); // I don't know where this is coming from
    29         update_option('active_plugins', $current);
    30         header('Location: plugins.php');
    31 }
    32 
    33 if ('deactivate' == $_GET['action']) {
    34         $current = "\n" . get_settings('active_plugins') . "\n";
    35         $current = str_replace("\n" . $_GET['plugin'], '', $current);
    36         $current = preg_replace("|(\n)+\s*|", "\n", $current);
    37         update_option('active_plugins', trim($current));
    38         header('Location: plugins.php');
    39 }
    4045
    4146?>
     
    6166        <tr>
    6267                <th>Plugin</th>
     68                <th>Version</th>
    6369                <th>Author</th>
    6470                <th>Description</th>
     
    7480                preg_match("|Author:(.*)|i", $plugin_data, $author_name);
    7581                preg_match("|Author URI:(.*)|i", $plugin_data, $author_uri);
     82                preg_match("|Version:(.*)|i", $plugin_data, $version);
    7683                $description = wptexturize(wp_filter_kses($description[1]));
    7784
     
    100107        <tr $style>
    101108                <td>$plugin</td>
     109                <td>{$version[1]}</td>
    102110                <td>$author</td>
    103111                <td>$description</td>
Note: See TracChangeset for help on using the changeset viewer.