Make WordPress Core

Changeset 378


Ignore:
Timestamp:
09/24/2003 09:55:06 PM (23 years ago)
Author:
alex_t_king
Message:

added list of comments

File:
1 edited

Legend:

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

    r294 r378  
    2020}
    2121
    22 $b2varstoreset = array('action','safe_mode','withcomments','c','posts','poststart','postend','content','edited_post_title','comment_error','profile', 'trackback_url', 'excerpt');
     22$b2varstoreset = array('action'
     23                      ,'safe_mode'
     24                      ,'withcomments'
     25                      ,'c'
     26                      ,'posts'
     27                      ,'poststart'
     28                      ,'postend'
     29                      ,'content'
     30                      ,'edited_post_title'
     31                      ,'comment_error'
     32                      ,'profile'
     33                      ,'trackback_url'
     34                      ,'excerpt'
     35                      ,'showcomments'
     36                      ,'commentstart'
     37                      ,'commentend'
     38                      ,'commentorder'
     39                      );
     40
    2341for ($i=0; $i<count($b2varstoreset); $i += 1) {
    2442    $b2var = $b2varstoreset[$i];
     
    170188            $post_password = $postdata['post_password'];
    171189
    172             include('b2edit.form.php');
     190            include('wp-edit.form.php');
    173191        } else {
    174192?>
     
    333351        $content = format_to_edit($content);
    334352
    335         include('b2edit.form.php');
     353        include('wp-edit.form.php');
    336354
    337355        break;
     
    437455                $post_pingback = get_settings('default_pingback_flag');
    438456                $default_post_cat = get_settings('default_post_category');
    439                 include('b2edit.form.php');
     457                include('wp-edit.form.php');
    440458                echo '<br /><br />';
    441459            }
     
    454472        }
    455473
    456         include('b2edit.showposts.php');
     474        include('wp-edit.showposts.php');
     475        echo '<br /><br />';
     476        include('wp-edit.showcomments.php');
     477
    457478        break;
    458479} // end switch
Note: See TracChangeset for help on using the changeset viewer.