Don't show template dropdown if there's only one: http://mosquito.wordpress.org/view.php?id=530

git-svn-id: http://svn.automattic.com/wordpress/trunk@2203 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2005-02-02 10:44:53 +00:00
parent ac7b74637e
commit 9ae063a5ed

View File

@ -83,22 +83,25 @@ edCanvas = document.getElementById('content');
<fieldset id="pageoptions"> <fieldset id="pageoptions">
<legend><?php _e('Page Options') ?></legend> <legend><?php _e('Page Options') ?></legend>
<table width="100%" cellspacing="2" cellpadding="5" class="editform"> <table width="100%" cellspacing="2" cellpadding="5" class="editform">
<?php if ( 0 != count( get_page_templates() ) ) { ?>
<tr valign="top"> <tr valign="top">
<th scope="row" width="30%"><?php _e('Page Template:') ?></th> <th scope="row" width="30%"><?php _e('Page Template:') ?></th>
<td><div><select name="page_template"> <td><div><select name="page_template">
<option value='default'><?php _e('Default Template'); ?></option> <option value='default'><?php _e('Default Template'); ?></option>
<?php page_template_dropdown($page_template); ?> <?php page_template_dropdown($page_template); ?>
</select> </select>
</div> </div>
</td> </td>
</tr> </tr>
<?php } ?>
<tr valign="top"> <tr valign="top">
<th scope="row" width="25%"><?php _e('Page slug') ?>:</th> <th scope="row" width="30%"><?php _e('Page slug') ?>:</th>
<td><input name="post_name" type="text" size="25" id="post_name" value="<?php echo $post_name ?>" /></td> <td><input name="post_name" type="text" size="25" id="post_name" value="<?php echo $post_name ?>" /></td>
</tr> </tr>
<?php if ($user_level > 7 && $users = $wpdb->get_results("SELECT ID, user_login, user_firstname, user_lastname FROM $wpdb->users WHERE user_level <= $user_level AND user_level > 0") ) : ?> <?php if ($user_level > 7 && $users = $wpdb->get_results("SELECT ID, user_login, user_firstname, user_lastname FROM $wpdb->users WHERE user_level <= $user_level AND user_level > 0") ) : ?>
<tr> <tr>
<th scope="row"><?php _e('Page owner'); ?>:</th> <th scope="row" width="30%"><?php _e('Page owner'); ?>:</th>
<td> <td>
<select name="post_author" id="post_author"> <select name="post_author" id="post_author">
<?php <?php