Changeset 207611
- Timestamp:
- 02/18/2010 02:58:18 PM (16 years ago)
- Location:
- blog-topics/branches/3.0
- Files:
-
- 2 edited
-
cets_blogtopics.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blog-topics/branches/3.0/cets_blogtopics.php
r204310 r207611 8 8 Description: WordPressMU plugin for classifying blogs into topics. 9 9 10 Version: 3. 010 Version: 3.1 11 11 12 12 Author: Deanna Schneider (http://deannaschneider.wordpress.com) … … 538 538 539 539 foreach ( $this->get_topics() as $topic ) { 540 if ($ id== $topic->id) {540 if ($blog_topic == $topic->id) { 541 541 $selected = "selected='selected'"; 542 542 } 543 543 544 echo "<option value='$topic->id' ". $selected .">" . $topic->topic_name ."</option>"; 544 545 $selected = ''; … … 749 750 <tr> 750 751 <?php 751 $this->get_topics_select();752 $this->get_topics_select($blog_id); 752 753 ?> 753 754 <tr> -
blog-topics/branches/3.0/readme.txt
r204575 r207611 49 49 == CHANGELOG == 50 50 51 3.1 52 53 * fixed a bug with the blog admin's select drop down not showing currently selected blog. 54 51 55 3.0 52 56
Note: See TracChangeset
for help on using the changeset viewer.