summaryrefslogtreecommitdiffstats
path: root/wp-admin
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-05-07 14:35:05 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-05-07 14:35:05 +0000
commit48737cae10bdee7094a9a42d9704b572bf1759a1 (patch)
tree0e224ea4ab8650bf4a223e09cc3c43855d24acf1 /wp-admin
parentd96c893db90af8f0709ee2486e5177bf4593c1b8 (diff)
downloadwordpress-mu-48737cae10bdee7094a9a42d9704b572bf1759a1.tar.gz
wordpress-mu-48737cae10bdee7094a9a42d9704b572bf1759a1.tar.xz
wordpress-mu-48737cae10bdee7094a9a42d9704b572bf1759a1.zip
Include version info on themes admin page, props momo360modena, fixes #618
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1268 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin')
-rw-r--r--wp-admin/wpmu-themes.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/wp-admin/wpmu-themes.php b/wp-admin/wpmu-themes.php
index e5e33b4..ad39ad0 100644
--- a/wp-admin/wpmu-themes.php
+++ b/wp-admin/wpmu-themes.php
@@ -27,6 +27,7 @@ $allowed_themes = get_site_allowed_themes();
<tr>
<th style="width:15%;text-align:center;"><?php _e('Active') ?></th>
<th style="width:25%;"><?php _e('Theme') ?></th>
+ <th style="width:10%;"><?php _e('Version') ?></th>
<th style="width:60%;"><?php _e('Description') ?></th>
</tr>
</thead>
@@ -51,6 +52,7 @@ $allowed_themes = get_site_allowed_themes();
<label><input name="theme[<?php echo $theme_key ?>]" type="radio" id="enabled_<?php echo $theme_key ?>" value="enabled" <?php echo $enabled ?> /> <?php _e('Yes') ?></label>
</td>
<th scope="row" style="text-align:left;"><?php echo $key ?></th>
+ <td><?php echo $theme['Version'] ?></td>
<td><?php echo $theme['Description'] ?></td>
</tr>
<?php endforeach; ?>