Changeset 1391
- Timestamp:
- 07/22/08 11:02:58 (5 months ago)
- Files:
-
- trunk/wp-admin/wpmu-themes.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/wpmu-themes.php
r1289 r1391 34 34 <tbody id="plugins"> 35 35 <?php 36 $total_theme_count = 0; 37 $activated_themes_count = 0; 36 38 foreach( (array) $themes as $key => $theme ) : 39 $total_theme_count++; 37 40 $theme_key = wp_specialchars($theme['Stylesheet']); 38 41 $class = ('alt' == $class) ? '' : 'alt'; … … 41 44 if( isset( $allowed_themes[ $theme_key ] ) == true ) { 42 45 $enabled = 'checked="checked" '; 46 $activated_themes_count++; 43 47 $class1 = ' active'; 44 48 } else { … … 63 67 <input type='submit' value='<?php _e('Update Themes »') ?>' /></p> 64 68 </form> 69 <p>Total Themes Installed: <?php echo $total_theme_count; ?><br /> 70 Themes Activated: <?php echo $activated_themes_count; ?></p> 65 71 </div> 66 72
