Plugin Directory

Changeset 207611


Ignore:
Timestamp:
02/18/2010 02:58:18 PM (16 years ago)
Author:
DeannaS
Message:

Minor bug fix - drop down box select not selecting.

Location:
blog-topics/branches/3.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • blog-topics/branches/3.0/cets_blogtopics.php

    r204310 r207611  
    88Description: WordPressMU plugin for classifying blogs into topics.
    99
    10 Version: 3.0
     10Version: 3.1
    1111
    1212Author: Deanna Schneider (http://deannaschneider.wordpress.com)
     
    538538       
    539539        foreach ( $this->get_topics() as $topic )  {
    540             if ($id == $topic->id) {
     540            if ($blog_topic == $topic->id) {
    541541                $selected = "selected='selected'";
    542542            }
     543           
    543544            echo "<option value='$topic->id' ". $selected .">" . $topic->topic_name ."</option>";
    544545            $selected = '';
     
    749750            <tr>
    750751            <?php
    751                     $this->get_topics_select();
     752                     $this->get_topics_select($blog_id);
    752753            ?>
    753754            <tr>
  • blog-topics/branches/3.0/readme.txt

    r204575 r207611  
    4949== CHANGELOG ==
    5050
     513.1
     52
     53* fixed a bug with the blog admin's select drop down not showing currently selected blog.
     54
    51553.0
    5256
Note: See TracChangeset for help on using the changeset viewer.